-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
44 lines (35 loc) · 773 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
source 'https://rubygems.org'
gem 'rails', '4.0.2'
gem 'carrierwave'
gem 'fog'
gem 'unf'
gem 'figaro'
gem 'tinder'
gem 'pry'
# background job
gem 'resque', '~> 1.23.0'
# autoscaling
gem 'heroku_resque_autoscaler'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 1.2'
group :development, :test do
gem 'rspec-rails', '~> 2.14'
gem 'sqlite3'
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry-rails'
gem 'quiet_assets'
end
group :production do
gem 'pg', '0.15.1'
gem 'rails_12factor', '0.0.2'
end
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby'
# Handling time analysis
gem 'chronic_duration'
# To make it prettier
gem 'therubyracer', platforms: :ruby # or any other runtime
gem 'less-rails'