Skip to content

Instantly share code, notes, and snippets.

@abuiles
Created September 2, 2010 21:29
Show Gist options
  • Save abuiles/562980 to your computer and use it in GitHub Desktop.
Save abuiles/562980 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.0.0'
gem 'authlogic', :git => 'git://github.com/odorcicd/authlogic.git', :branch => 'rails3'
gem 'cancan', "1.3.2"
gem 'haml',"3.0.9"
gem 'rails3-jquery-autocomplete', '>= 0.2.0'
group :production do
gem 'pg', "0.9.0"
end
unless ENV.has_key?('SSH_CLIENT')
group :development,:cucumber, :test do
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'mongrel', "1.2.0.pre2"
gem 'ruby-debug-base19', "0.11.24"
gem 'ruby-debug19', "0.11.6"
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'culerity'
gem 'celerity', "0.7.4", :require => nil
gem 'rspec-rails', '2.0.0.beta.19'
gem 'rspec', '2.0.0.beta.19'
gem 'launchy'
gem 'factory_girl_rails'
gem 'pickle'
gem 'shoulda'
gem 'nifty-generators'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment