2016-08-06 13:15:47 -04:00
|
|
|
require "pathname"
|
2017-06-30 00:55:31 -04:00
|
|
|
require_relative "version"
|
2013-01-06 18:13:47 -05:00
|
|
|
|
|
|
|
module Rails
|
2015-04-22 23:05:30 -04:00
|
|
|
module AppLoader # :nodoc:
|
2014-07-07 21:05:30 -04:00
|
|
|
extend self
|
|
|
|
|
2013-09-09 11:06:02 -04:00
|
|
|
RUBY = Gem.ruby
|
2016-08-06 13:15:47 -04:00
|
|
|
EXECUTABLES = ["bin/rails", "script/rails"]
|
2013-04-11 07:18:16 -04:00
|
|
|
BUNDLER_WARNING = <<EOS
|
2013-04-09 19:49:01 -04:00
|
|
|
Looks like your app's ./bin/rails is a stub that was generated by Bundler.
|
|
|
|
|
2015-03-29 16:10:48 -04:00
|
|
|
In Rails #{Rails::VERSION::MAJOR}, your app's bin/ directory contains executables that are versioned
|
2013-04-09 19:49:01 -04:00
|
|
|
like any other source code, rather than stubs that are generated on demand.
|
|
|
|
|
|
|
|
Here's how to upgrade:
|
|
|
|
|
|
|
|
bundle config --delete bin # Turn off Bundler's stub generator
|
2016-02-13 00:14:23 -05:00
|
|
|
rails app:update:bin # Use the new Rails 5 executables
|
2013-04-09 19:49:01 -04:00
|
|
|
git add bin # Add bin/ to source control
|
|
|
|
|
|
|
|
You may need to remove bin/ from your .gitignore as well.
|
|
|
|
|
|
|
|
When you install a gem whose executable you want to use in your app,
|
|
|
|
generate it and add it to source control:
|
|
|
|
|
|
|
|
bundle binstubs some-gem-name
|
|
|
|
git add bin/new-executable
|
|
|
|
|
2013-04-11 07:18:16 -04:00
|
|
|
EOS
|
|
|
|
|
2015-04-22 23:05:30 -04:00
|
|
|
def exec_app
|
2013-04-11 07:18:16 -04:00
|
|
|
original_cwd = Dir.pwd
|
|
|
|
|
|
|
|
loop do
|
|
|
|
if exe = find_executable
|
|
|
|
contents = File.read(exe)
|
|
|
|
|
|
|
|
if contents =~ /(APP|ENGINE)_PATH/
|
|
|
|
exec RUBY, exe, *ARGV
|
|
|
|
break # non reachable, hack to be able to stub exec in the test suite
|
2016-08-06 13:15:47 -04:00
|
|
|
elsif exe.end_with?("bin/rails") && contents.include?("This file was generated by Bundler")
|
2013-04-11 07:18:16 -04:00
|
|
|
$stderr.puts(BUNDLER_WARNING)
|
2016-08-06 13:15:47 -04:00
|
|
|
Object.const_set(:APP_PATH, File.expand_path("config/application", Dir.pwd))
|
|
|
|
require File.expand_path("../boot", APP_PATH)
|
2017-06-30 00:55:31 -04:00
|
|
|
require_relative "commands"
|
2013-04-11 07:18:16 -04:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2013-04-09 19:49:01 -04:00
|
|
|
|
2013-04-11 07:18:16 -04:00
|
|
|
# If we exhaust the search there is no executable, this could be a
|
|
|
|
# call to generate a new application, so restore the original cwd.
|
2016-09-01 17:41:49 -04:00
|
|
|
Dir.chdir(original_cwd) && return if Pathname.new(Dir.pwd).root?
|
2013-04-11 07:18:16 -04:00
|
|
|
|
2013-09-13 04:44:35 -04:00
|
|
|
# Otherwise keep moving upwards in search of an executable.
|
2016-08-06 13:15:47 -04:00
|
|
|
Dir.chdir("..")
|
2013-01-06 18:13:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-07 21:05:30 -04:00
|
|
|
def find_executable
|
2014-01-24 13:00:31 -05:00
|
|
|
EXECUTABLES.find { |exe| File.file?(exe) }
|
2013-01-06 18:13:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|