Skip to content

Instantly share code, notes, and snippets.

@elmariofredo
Created June 5, 2010 20:42
Show Gist options
  • Save elmariofredo/426977 to your computer and use it in GitHub Desktop.
Save elmariofredo/426977 to your computer and use it in GitHub Desktop.
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