-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (31 loc) · 742 Bytes
/
Gemfile
File metadata and controls
40 lines (31 loc) · 742 Bytes
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
source 'https://rubygems.org'
gem 'rails', '4.1.6'
gem 'pg'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'bootstrap_form'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'spring', group: :development
gem 'rails_serve_static_assets'
gem 'devise'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
group :development do
gem 'better_errors'
gem 'rails_db_info'
gem 'binding_of_caller'
end
group :development, :test do
gem 'rspec-rails'
gem 'faker'
end
group :test do
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'database_cleaner'
end
gem 'carrierwave_direct'
gem 'remotipart', '~> 1.2'