Created
March 16, 2010 14:32
-
-
Save merbjedi/334023 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
# Edit this Gemfile to bundle your application's dependencies. | |
source 'http://gemcutter.org' | |
gem "bundler", "0.9.5" | |
gem "rails", "3.0.0.beta" | |
gem "haml" | |
gem "compass", ">= 0.10.0.rc1" | |
# required for getting sass to work with heroku | |
gem "hassle" | |
gem "better_partials", ">= 1.0.1" | |
gem "viewfu", ">= 1.0.1" | |
gem "will_paginate", ">= 3.0.pre" | |
gem "mongo", ">= 0.19" | |
gem "mongo_ext", ">= 0.19" | |
gem "mongo_mapper", ">= 0.7.1" | |
gem "compass-960-plugin" | |
group :development do | |
gem "ruby-debug" | |
gem "mongrel" | |
end | |
group :test do | |
gem "ruby-debug" | |
gem 'capybara' | |
gem 'database_cleaner' | |
gem 'cucumber-rails' | |
gem "factory_girl", :require => nil | |
gem "rspec-rails", ">= 2.0.0.beta" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment