Skip to content

Instantly share code, notes, and snippets.

@boriscy
Created February 15, 2011 12:44
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boriscy/827469 to your computer and use it in GitHub Desktop.
Save boriscy/827469 to your computer and use it in GitHub Desktop.
Gemfile example
source :rubygems
gem "rails", ">= 3.0"
gem "rack"
gem "clearance", "0.9.0.rc9"
gem "haml"
gem "high_voltage"
gem "hoptoad_notifier"
gem "RedCloth", :require => "redcloth"
gem "paperclip"
gem "will_paginate"
gem "formtastic"
gem "mysql"
gem "flutie"
gem "dynamic_form"
# http://blog.davidchelimsky.net/2010/07/11/rspec-rails-2-generators-and-rake-tasks/
group :development, :test, :cucumber do
gem "rspec-rails", "~> 2.0.0"
gem "ruby-debug", :platforms => :mri_18
gem "ruby-debug19", :platforms => :mri_19
end
group :test, :cucumber do
gem "cucumber-rails"
gem "factory_girl_rails"
gem "bourne"
gem "capybara"
gem "database_cleaner"
gem "fakeweb"
gem "nokogiri"
gem "timecop"
gem "treetop"
gem "shoulda"
gem "launchy"
gem "akephalos", :git => "git://github.com/thoughtbot/akephalos.git"
gem "thin"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment