-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
33 lines (30 loc) · 831 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
source "http://rubygems.org"
# gemspec
gem "activesupport", '>= 3.0.0'
gem "httparty"
gem "nokogiri"
gem "deep_cloneable"
gem 'rack', :git => 'git://github.com/rack/rack.git'
gem "liquid"
gem 'kaminari', :git => 'https://github.com/amatsuda/kaminari.git'
gem "carrierwave", :git => "git://github.com/jnicklas/carrierwave.git"
group :development do
gem "sqlite3-ruby", :require => "sqlite3"
gem "annotate"
gem "bluecloth"
gem "yard"
gem "bundler"
gem "jeweler"
gem "rcov"
gem "reek"
end
group :test do
gem "timecop"
gem "capybara", ">= 0.4.0"
gem "mocha", :require => "mocha"
gem "fakeweb"
gem "factory_girl", :require => "factory_girl", :git => "git://github.com/thoughtbot/factory_girl.git"
gem "shoulda", :require => "shoulda"
gem "test_benchmarker"
gem "rack-test", :require => "rack/test"
end