forked from apigy/selfstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (32 loc) · 686 Bytes
/
Gemfile
File metadata and controls
42 lines (32 loc) · 686 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
41
42
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'
gem 'json', '~> 1.7.7'
group :development do
gem 'sqlite3'
gem 'pry-rails'
end
group :production do
gem 'thin'
gem 'pg'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'rspec-rails', '~> 2.0'
gem 'shoulda'
end
# jQuery
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Kickstarter's awesome Amazon Flexible Payments gem
gem 'amazon_flex_pay'
# Configuration File
gem 'rails_config'
# For Heroku
gem 'rails_12factor'