Skip to content

Instantly share code, notes, and snippets.

@jakcharlton
Created October 14, 2010 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakcharlton/625325 to your computer and use it in GitHub Desktop.
Save jakcharlton/625325 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.0.0'
gem "mongoid", "2.0.0.beta.17"
gem "bson_ext", "1.0.4"
gem 'omniauth'
$heroku = ENV['USER'] ? !! ENV['USER'].match(/^repo\d+/) : ENV.any?{|key, _| key.match(/^HEROKU_/)}
unless $heroku
group :development, :test do
gem 'ruby-debug19'
gem "rspec", ">= 2.0.0"
gem "rspec-rails", ">= 2.0.0"
gem "autotest"
gem 'webrat'
gem 'heroku'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment