Skip to content

Instantly share code, notes, and snippets.

@filiptepper
Created August 22, 2014 09:10
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 filiptepper/c4e0e821cd4b8f3ba173 to your computer and use it in GitHub Desktop.
Save filiptepper/c4e0e821cd4b8f3ba173 to your computer and use it in GitHub Desktop.
Conditional Gemfile
source 'https://rubygems.org/'
if ENV['DEVELOPMENT'] == '1'
gem 'rails', '4.0.0'
else
gem 'rails', '4.1.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment