-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
42 lines (28 loc) · 789 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
source :gemcutter
gem "rails", "3.2.11"
gem 'pry'
gem 'will_paginate' , '3.0.4'
gem 'rmagick', '2.13.1'
gem 'hpricot', '0.8.6'
gem 'oai', "0.3.0"
gem 'capistrano', '2.12.0'
gem 'jquery-rails', '2.2.1'
gem 'mysql2','0.3.11'
gem 'recaptcha', '0.3.5'
gem 'omeka_client', :path => '/home/benwbrum/dev/products/fromthepage/integration/omeka/omeka_client'
# replacing the old Rails 2.3-style plugins
gem 'acts_as_list', '0.2.0'
gem 'acts_as_tree', '1.2.0'
gem 'in_place_editing', '1.2.0'
group :development do
end
group :test do
gem "database_cleaner", "0.9.1"
gem "capybara", "2.0.2"
gem "shoulda", "3.4.0"
end
group :production do
end
gem "rspec-rails", "2.12.2", :group => [:development, :test]
gem "factory_girl_rails", "4.2.1", :group => [:development, :test]
#- EOF