-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
30 lines (28 loc) · 837 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
source 'http://rubygems.org'
gem 'rails', '3.0.3'
gem 'pg', '0.9.0'
gem 'devise', '1.1.3'
gem "escape_utils", '0.1.9'
gem "geokit-rails3", "0.1.2"
group :test, :development do
if RUBY_VERSION < "1.9"
gem 'ruby-debug'
else
gem 'ruby-debug19'
end
gem 'annotate' # print out the table structure for models at the top
gem 'rspec-rails'
gem 'heroku'
gem "mongrel", ">= 1.2.0.pre2" # use mongrel instead of webrick for development
gem 'rails3-generators'
gem 'cucumber-rails'
gem 'pickle'
gem 'capybara'
gem 'launchy' # So you can do Then show me the page
gem 'thin' # this will speed up your cucumber @javascript tests by a lot
gem 'factory_girl_rails', :git => 'git://github.com/msgehard/factory_girl_rails.git'
gem 'database_cleaner'
gem 'timecop'
#gem 'jasmine'
gem 'spork', '~> 0.9.0.rc2'
end