forked from copycopter/copycopter-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (41 loc) · 963 Bytes
/
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
source "https://rubygems.org"
ruby "2.3.1"
gem "dynamic_form", "1.1.4"
gem "flutie", "1.3.3"
gem "bourbon", "2.1.0"
gem "formtastic", "2.0.2"
gem "htmldiff", "0.0.1"
gem "pg"
gem "rails", "3.2.6"
gem "thin", "1.3.1"
gem "yajl-ruby", "1.1.0", require: "yajl"
gem "jquery-rails", "1.0.19"
# gem "capistrano"
gem "capistrano-rails"
gem "capistrano-rvm"
gem "capistrano3-unicorn"
group :assets do
gem "sass-rails", "~> 3.2.5"
gem "coffee-rails", "~> 3.2.1"
gem "uglifier"
gem "yui-compressor"
end
group :development, :test do
gem "foreman", "0.40.0"
gem "launchy", "2.0.5"
gem "rspec-rails", "2.8.1"
gem "spork", "0.9.0"
end
group :test do
gem "bourne", "1.1.1"
gem "capybara-webkit", "0.12.1"
gem "cucumber-rails", "1.3.0", require: false
gem "database_cleaner", "0.7.1"
gem "factory_girl_rails", "1.7.0"
gem "fakeweb", "1.3.0"
gem "shoulda-matchers", "1.0.0"
gem "timecop", "0.3.5"
end
group :production do
gem "unicorn"
end