-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
52 lines (45 loc) · 1.16 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.2'
gem 'anjlab-bootstrap-rails', '>= 3.0.0.0', :require => 'bootstrap-rails'
gem 'bootstrap-datepicker-rails'
gem 'bcrypt-ruby'
gem 'angularjs-rails', '1.2.5'
gem 'ng-rails-csrf'
gem 'prawn', '1.0.0.rc2'
gem 'rmagick'
gem 'carrierwave'
gem 'fog'
gem 'active_model_serializers'
gem 'active_attr'
gem 'pg'
gem 'braintree-rails', :github => 'jmophoto/braintree-rails'
gem 'unicorn', '4.7.0'
group :development, :test do
gem 'rspec-rails', '2.13.1'
gem 'quiet_assets'
gem 'capistrano', '~> 3.0'
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
gem 'capistrano-rvm'
gem 'capistrano-nginx-unicorn', require: false
end
group :test do
gem 'selenium-webdriver', '2.0.0'
gem 'capybara', '2.1.0'
gem 'factory_girl_rails', '4.2.1'
end
gem 'sass-rails', '4.0.1'
gem 'uglifier', '2.1.1'
gem 'coffee-rails', '4.0.1'
gem 'jquery-rails', '2.2.1'
gem 'jquery-ui-rails'
gem 'jquery-fileupload-rails'
gem 'turbolinks', '1.1.1'
gem 'jbuilder', '1.0.2'
group :doc do
gem 'sdoc', '0.3.20', require: false
end
group :production do
gem 'rails_12factor', '0.0.2'
end