forked from ppeszko/exceptions_begone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
31 lines (27 loc) · 879 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
# A sample Gemfile
source :gemcutter
#
# gem "rails"
gem "authlogic", "2.1.3"
gem "mislav-will_paginate", "2.3.11", :lib => "will_paginate"
gem "lukeredpath-simpleconfig", "1.0.2", :lib => "simpleconfig"
gem "ruby-net-ldap", "0.0.4", :lib => "net/ldap"
group :development do
gem "josevalim-rails-footnotes", :lib => "rails-footnotes"
end
group :test do
gem "redgreen"
gem "thoughtbot-factory_girl", "1.2.2", :lib => "factory_girl"
gem "webrat", "0.6.0", :lib => false
gem "cucumber", "0.6.1", :lib => false
gem "rspec", "1.2.9", :lib => false
gem "rspec-rails", "1.2.9", :lib => false
end
group :cucumber do
gem 'cucumber-rails', '>=0.2.3'
gem 'database_cleaner', '>=0.2.3'
gem 'webrat', '>=0.6.0'
gem 'rspec', '>=1.2.9'
gem 'rspec-rails', '>=1.2.9'
gem "thoughtbot-factory_girl", "1.2.2", :lib => "factory_girl"
end