-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·54 lines (44 loc) · 1.1 KB
/
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
45
46
47
48
49
50
51
52
53
54
source 'https://rubygems.org'
gem 'rails', '4.2.3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
# gem 'haml', '~> 4.0.6'
gem 'paperclip', '~> 4.2.2'
gem 'bootstrap-sass', '~> 3.3.4'
gem 'devise'
gem 'will_paginate', '~> 3.0.7'
gem 'bootstrap-will_paginate', '0.0.10'
# gem 'nprogress-rails'
gem 'geocoder', '~> 1.2.9'
gem 'simple_form'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'omniauth-facebook'
gem 'pg'
gem 'friendly_id', '~> 5.1.0'
gem 'gibbon'
gem 'mandrill-api'
gem 'high_voltage'
gem 'metamagic'
gem 'redcarpet'
gem 'autoprefixer-rails'
gem 'dotenv-rails', :groups => [:development, :test]
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.1.3'
gem 'spring'
gem 'therubyracer'
gem 'capistrano', require: false
gem 'capistrano-rbenv', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano3-puma', require: false
end
group :production do
gem 'rails_12factor', '0.0.2'
gem 'puma'
gem 'skylight'
end