method
target_rails_prerelease
v7.2.3 -
Show latest stable
- Class:
Rails::Generators::AppBase
target_rails_prerelease(self_command = "new")private
No documentation available.
# File railties/lib/rails/generators/app_base.rb, line 671
def target_rails_prerelease(self_command = "new")
return unless rails_prerelease? && bundle_install?
if !File.exist?(File.expand_path("Gemfile", destination_root))
create_file("Gemfile", <<~GEMFILE)
source "https://rubygems.org"
#{rails_gemfile_entry}
GEMFILE
run_bundle
@argv.delete_at(@argv.index(app_path))
@argv.unshift(destination_root)
require "shellwords"
bundle_command("exec rails #{self_command} #{Shellwords.join(@argv)}")
exit
else
remove_file("Gemfile")
remove_file("Gemfile.lock")
end
end