1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #30016 from albertoalmagro/set-ruby-version-in-gemfile-and-ruby-version-by-default

Set Ruby version in Gemfile and .ruby-version by default
This commit is contained in:
Guillermo Iguaran 2017-07-31 14:04:25 -05:00 committed by GitHub
commit 0d58e7e478
5 changed files with 25 additions and 0 deletions

View file

@ -1,3 +1,9 @@
* Add `ruby x.x.x` version to `Gemfile` and create `.ruby-version`
root file containing current Ruby version when new Rails applications are
created.
*Alberto Almagro*
* Support `-` as a platform-agnostic way to run a script from stdin with
`rails runner`

View file

@ -49,6 +49,10 @@ module Rails
copy_file "README.md", "README.md"
end
def ruby_version
template "ruby-version", ".ruby-version"
end
def gemfile
template "Gemfile"
end
@ -242,6 +246,7 @@ module Rails
def create_root_files
build(:readme)
build(:rakefile)
build(:ruby_version)
build(:configru)
build(:gitignore) unless options[:skip_git]
build(:gemfile) unless options[:skip_gemfile]

View file

@ -1,5 +1,6 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby <%= "'#{RUBY_VERSION}'" %>
<% gemfile_entries.each do |gem| -%>
<% if gem.comment -%>

View file

@ -0,0 +1 @@
<%= RUBY_VERSION -%>

View file

@ -4,6 +4,7 @@ require "generators/shared_generator_tests"
DEFAULT_APP_FILES = %w(
.gitignore
.ruby-version
README.md
Gemfile
Rakefile
@ -805,6 +806,17 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
end
def test_inclusion_of_ruby_version
run_generator
assert_file "Gemfile" do |content|
assert_match(/ruby '#{RUBY_VERSION}'/, content)
end
assert_file ".ruby-version" do |content|
assert_match(/#{RUBY_VERSION}/, content)
end
end
def test_version_control_initializes_git_repo
run_generator [destination_root]
assert_directory ".git"