forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
49 lines (45 loc) · 1.22 KB
/
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
48
49
# These resources are needed to setup the test env
source 'http://rubygems.org'
# Set the RAILS env variable to test against diffirent versions of rails
case ENV["RAILS"]
when "3.0.0"
gem 'rails', '= 3.0.0'
when "3.0.1"
gem 'rails', '= 3.0.1'
when "3.0.2"
gem 'rails', '= 3.0.2'
when "3.0.3"
gem 'rails', '= 3.0.3'
when "3.0.4"
gem 'rails', '= 3.0.4'
when "3.0.5"
gem 'rails', '= 3.0.5'
when "3.0.6"
gem 'rails', '= 3.0.6'
when "3.0.7"
gem 'rails', '= 3.0.7'
else
# Default gems for in the gemspec
gem 'rails', '>= 3.0.0'
end
gem "meta_search", '>= 0.9.2'
gem 'devise', '>= 1.1.2'
gem 'formtastic', '>= 1.1.0'
gem 'will_paginate', '>= 3.0.pre2'
gem 'inherited_views'
gem 'haml', '>= 3.0.18'
group :development, :test do
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'jeweler', '1.5.2'
gem 'rake', '0.8.7'
end
group :test do
gem 'rspec', '~> 2.6.0'
gem 'rspec-rails', '~> 2.6.0'
gem 'capybara', '0.3.9'
gem 'cucumber', '0.9.2'
gem 'cucumber-rails', '0.3.2'
gem 'database_cleaner'
gem 'shoulda', '2.11.2', :require => nil
gem 'launchy'
end