Created
June 5, 2010 20:42
-
-
Save devopsmariocom/426977 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 'http://rubygems.org' | |
gem 'rails', '3.0.0.beta3' | |
# Haml and Sass - templating engines | |
# > http://github.com/nex3/haml | |
gem "haml" | |
# MySQL API module for Ruby | |
# > http://rubygems.org/gems/mysql | |
gem "mysql" | |
# A collection of useful Rails generator scripts for scaffolding, layout files, authentication, and more. | |
# > http://github.com/ryanb/nifty-generators | |
gem "nifty-generators" | |
# A set of Rails 3 responders to dry up your application | |
# > http://github.com/plataformatec/responders | |
gem "responders" | |
# Forms made easy for Rails! It's tied to a simple DSL, with no opinion on markup. | |
# > http://github.com/plataformatec/simple_form | |
gem "simple_form" | |
group :development do | |
# Rails 3 compatible generators for DataMapper, Haml, Factory-girl, Authlogic, Mongomapper, Shoulda, Formtastic and SimpleForm | |
# > http://github.com/indirect/rails3-generators | |
gem "rails3-generators" | |
end | |
group :test do | |
# Shoulda - Making tests easy on the fingers and eyes | |
# > http://github.com/thoughtbot/shoulda | |
gem "shoulda" | |
# factory_girl - Fixtures replacement | |
# > http://github.com/thoughtbot/factory_girl | |
gem "factory_girl" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment