mirror of
https://github.com/github/rails.git
synced 2026-02-13 07:35:16 -05:00
Fixed that the -r/--ruby path option of the rails command was not being respected (closes #4549) [ryan.raaum@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4177 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Fixed that the -r/--ruby path option of the rails command was not being respected #4549 [ryan.raaum@gmail.com]
|
||||
|
||||
* Added that Dispatcher exceptions should not be shown to the user unless a default log has not been configured. Instead show public/500.html [DHH]
|
||||
|
||||
* Fixed that rake clone_structure_to_test should quit on pgsql if the dump is unsuccesful #4585 [augustz@augustz.com]
|
||||
|
||||
@@ -17,7 +17,8 @@ class AppGenerator < Rails::Generator::Base
|
||||
end
|
||||
|
||||
def manifest
|
||||
script_options = { :chmod => 0755 }
|
||||
# Use /usr/bin/env if no special shebang was specified
|
||||
script_options = { :chmod => 0755, :shebang => options[:shebang] == DEFAULT_SHEBANG ? nil : options[:shebang] }
|
||||
dispatcher_options = { :chmod => 0755, :shebang => options[:shebang] }
|
||||
|
||||
record do |m|
|
||||
@@ -93,8 +94,8 @@ class AppGenerator < Rails::Generator::Base
|
||||
def add_options!(opt)
|
||||
opt.separator ''
|
||||
opt.separator 'Options:'
|
||||
opt.on("-r", "--ruby", String,
|
||||
"Path to the Ruby binary of your choice.",
|
||||
opt.on("-r", "--ruby=path", String,
|
||||
"Path to the Ruby binary of your choice (otherwise scripts use env, dispatchers current path).",
|
||||
"Default: #{DEFAULT_SHEBANG}") { |options[:shebang]| }
|
||||
|
||||
opt.on("-d", "--database=name", String,
|
||||
|
||||
Reference in New Issue
Block a user