forked from apigy/selfstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (34 loc) · 766 Bytes
/
Gemfile
File metadata and controls
45 lines (34 loc) · 766 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
43
44
45
source 'https://rubygems.org'
ruby '2.2.0'
gem 'rails', '4.0.0'
gem 'json', '~> 1.8.2'
group :development do
gem 'sqlite3', '~> 1.3.10'
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', '~> 5.0'
# Kickstarter's awesome Amazon Flexible Payments gem
gem 'amazon_flex_pay'
# Configuration File
gem 'rails_config'
# Active Admin
gem 'activeadmin', github: 'activeadmin'
# For Heroku
gem 'rails_12factor'