-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
53 lines (45 loc) · 1.37 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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'rails_admin'
gem 'mysql2', '~> 0.3.11'
gem 'haml-rails', '~> 0.3.4'
gem 'json', '~> 1.7.5'
gem 'libv8', '~> 3.11.8'
gem 'therubyracer', '0.11.0beta5'
gem 'jquery-rails', '~> 2.1.1'
gem 'devise', '~> 2.1.3'
gem 'simple_form', '~> 2.0.2'
gem 'hominid', '~> 3.0.5'
gem 'russian', '~> 0.6.0'
gem 'activemerchant', :require => 'active_merchant'
gem 'gon'
gem 'airbrake'
gem 'high_voltage'
gem 'secure_headers'
gem "sidekiq"
gem "sidekiq_mailer"
gem 'rdiscount'
gem 'hpricot'
gem 'rich'
gem 'wicked_pdf', :github => "mileszs/wicked_pdf"
gem 'wkhtmltopdf-binary'
gem 'mobylette'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem "twitter-bootstrap-rails", '~> 2.1.2'
gem 'uglifier', '>= 1.0.3'
gem 'turbo-sprockets-rails3'
end
group :development do
gem 'thin', '~> 1.4.1'
#gem 'debugger'
gem 'quiet_assets', '~> 1.0.1'
gem 'letter_opener'
end
gem 'capistrano'
gem 'capistrano-ext'
gem 'rvm-capistrano', '>= 1.1.0', require: false
group :production do
gem 'unicorn', '~> 4.6.2'
end