-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (40 loc) · 1.01 KB
/
Gemfile
File metadata and controls
51 lines (40 loc) · 1.01 KB
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
50
source 'http://rubygems.org'
gem 'rails', '3.0.7'
gem 'mysql'
gem "authlogic"
gem "declarative_authorization"
# Deploy with Capistrano
gem 'capistrano'
gem 'capistrano-ext'
gem "jquery-rails"
gem 'formtastic', '~> 1.1.0'
group :development do
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
gem 'ruby-debug'
# gem 'ruby-debug19'
end
group :test, :cucumber do
gem 'autotest'
gem 'autotest-growl'
gem 'autotest-fsevent'
gem 'webrat'
gem 'capybara', "0.3.9" # TODO capybara is held below 0.4.0 because of an error
gem "shoulda"
gem "rr"
# gem "rspec-rr", :git => "git://github.com/josephwilk/rspec-rr.git", :branch => "rspec2" # installed as plugin
gem "pickle"
gem "factory_girl"
gem "faker"
gem "fakeweb"
gem "timecop"
gem "akephalos"
#gem "culerity"
#gem "celerity", :require => nil
gem "launchy"
gem "database_cleaner"
gem "minitest" # we are still on 1.8.7
gem "rspec", ">= 2"
gem "rspec-rails", ">= 2"
gem "cucumber"
gem "cucumber-rails"
end