Created
February 15, 2011 12:44
-
-
Save boriscy/827469 to your computer and use it in GitHub Desktop.
Gemfile example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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