From 7173c4f931c9026bd3bc0b644d93dae744433f09 Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Sat, 22 Dec 2012 11:13:10 -0800 Subject: Detect rbenv and update the shebang --- railties/lib/rails/generators/app_base.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'railties/lib/rails/generators/app_base.rb') diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb index 9874fb462a..9b9ae72e18 100644 --- a/railties/lib/rails/generators/app_base.rb +++ b/railties/lib/rails/generators/app_base.rb @@ -261,7 +261,14 @@ module Rails end def run_bundle - bundle_command('install --binstubs') unless options[:skip_gemfile] || options[:skip_bundle] || options[:pretend] + command = "install --binstubs" + command << " --shebang ruby-local-exec" if detect_ruby_local_exec + + bundle_command(command) unless options[:skip_gemfile] || options[:skip_bundle] || options[:pretend] + end + + def detect_ruby_local_exec + ENV["PATH"].split(":").find { |path| File.file?(File.join(path, "ruby-local-exec")) } end def empty_directory_with_keep_file(destination, config = {}) -- cgit v1.2.3