Created
March 3, 2010 00:01
-
-
Save karmatr0n/320136 to your computer and use it in GitHub Desktop.
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
# Edit this Gemfile to bundle your application's dependencies. | |
source :gemcutter | |
gem "rails", "3.0.0.beta" | |
gem "pg" | |
gem "haml-edge", "2.3.155", :require => 'haml' | |
gem "compass", "0.10.0.pre8", :git => "git://github.com/chriseppstein/compass.git", :branch => 'master' | |
gem "authlogic", "2.1.3", :git => "git://github.com/binarylogic/authlogic.git", :branch => 'master' | |
gem "ssl_requirement" | |
gem "paperclip", "2.3.1.1", :git => "git://github.com/thoughtbot/paperclip.git", :branch => 'rails3' | |
gem "dom_id", "0.0.0", :git => "git://github.com/nazgum/domid_gum.git", :branch => "master", :require => 'domid_gum' | |
gem "net-ssh", :require => 'net/ssh' | |
gem "will_paginate" | |
gem "rmagick", :require => 'RMagick' | |
gem 'barby' | |
gem 'bcrypt-ruby', :require => 'bcrypt' | |
gem "jquery_helpers", "0.0.0", :git => 'git://github.com/CodeOfficer/jquery-helpers-for-rails3.git', :branch => 'master' | |
gem "mongrel" | |
gem "rackamole" | |
group :development do | |
# DB performance tools | |
gem "bullet" # Gem to identify N+1 queries and unused eager loading | |
gem "rails_indexes", "0.0.0", :git => "git://github.com/eladmeidar/rails_indexes.git", :branch => "master" # Gem to identify potential db indexes | |
gem "slim_scrooge", "1.0.5" # Gem to heavily optimize your database interactions | |
end | |
group :test do | |
gem "rspec" | |
gem "rspec-rails", "2.0.0.a10", :git => "git://github.com/rspec/rspec-rails.git", :branch => "master", :require => 'spec/rails' | |
gem "factory_girl", :git => "git://github.com/thoughtbot/factory_girl.git", :branch => "rails3" | |
gem "webrat" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment