Skip to content

Instantly share code, notes, and snippets.

@Sjors
Created June 16, 2011 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sjors/1028832 to your computer and use it in GitHub Desktop.
Save Sjors/1028832 to your computer and use it in GitHub Desktop.
Gemfile
source 'http://rubygems.org'
gem 'rails', '>=3.0.0'
gem 'rake', ">=0.9.2"
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.3.2'
gem 'paperclip'
gem 'json'
gem 'kaminari'
group :production do
gem 'pg', "0.9.0"
end
group :development, :cucumber, :test do
gem 'faker'
gem "ffi", "~> 1.0.9"
gem 'hirb'
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'mongrel', "1.2.0.pre2"
gem 'ruby-debug19'
gem 'capybara','~>1.0.0beta1'
gem 'database_cleaner'
gem 'cucumber-rails', ">=0.5.1"
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'
gem 'mysql2', '~> 0.2.7'
gem 'heroku'
gem 'ZenTest'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment