Skip to content

Instantly share code, notes, and snippets.

@slawosz
Created May 19, 2010 09:49
Show Gist options
  • Save slawosz/406147 to your computer and use it in GitHub Desktop.
Save slawosz/406147 to your computer and use it in GitHub Desktop.
file 'Gemfile', <<-GEMS
source 'http://rubygems.org'
gem "bundler", "0.9.25"
gem 'rails', '3.0.0.beta3'
gem "compass"
gem "haml"
gem "bundler", ">=0.9.25"
gem "rails3-generators"
#works with devise
gem "mongoid", :git => "http://github.com/dbackeus/mongoid.git"
#gem "mongoid", :git => "git://github.com/durran/mongoid.git"
gem "mongo"
gem "bson_ext"
gem "devise", :git => "git://github.com/plataformatec/devise.git", :ref => "9291ab55b895724"
#gem "devise", :git => "git://github.com/plataformatec/devise.git"
gem "will_paginate", "3.0.pre"
gem "yard", :require => nil
group :cucumber do
gem "culerity", :require => nil
gem "capybara"
gem "thin", :require => nil
end
group :cucumber, :test do
gem "rspec", ">= 2.0.0.beta.4", :require => false
gem "rspec-rails", ">= 2.0.0.beta.4", :require => false
gem "factory_girl", :git => "git://github.com/drogus/factory_girl.git"
gem "faker"
end
group :metrics do
gem "metric_fu"
gem "reek" # code smells
gem "flay" # duplicates
gem "churn" # how often is file, method or class changes? if it's changed too often it means it is probably not encapsulated enough
gem "rcov" # test coverage
gem "flog" # code complexity
gem "roodi" # design issues
end
GEMS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment