Commit d3d7ad54f7b136a804d5cb7c9a118ae35b7e5c7a

Authored by Arthur Nogueira Neves
2 parents fc25ef3a 6d2b414c
Exists in master and in 1 other branch production

Merge pull request #817 from tricknotes/ruby-2.2-on-heroku

Allow to specify Ruby version in Gemfile
Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
Gemfile
... ... @@ -2,6 +2,8 @@ source 'https://rubygems.org'
2 2  
3 3 RAILS_VERSION = '~> 4.1.8'
4 4  
  5 +ruby ENV['RUBY_VERSION'] if ENV['RUBY_VERSION']
  6 +
5 7 gem 'actionmailer', RAILS_VERSION
6 8 gem 'actionpack', RAILS_VERSION
7 9 gem 'railties', RAILS_VERSION
... ...