Commit 6d2b414ca28367a2cb23a09751ee2052a0546c87

Authored by Ryunosuke SATO
1 parent fc25ef3a
Exists in master and in 1 other branch production

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
... ...