提交 84adc214 编写于 作者: S Santiago Pastorino

Merge pull request #5788 from Ask11/rails_new_help

"rails new -h" shows message in rails directory
......@@ -64,9 +64,13 @@
require "rails/commands/#{command}"
when 'new'
puts "Can't initialize a new Rails application within the directory of another, please change to a non-Rails directory first.\n"
puts "Type 'rails' for help."
exit(1)
if ARGV.first.in?(['-h', '--help'])
require 'rails/commands/application'
else
puts "Can't initialize a new Rails application within the directory of another, please change to a non-Rails directory first.\n"
puts "Type 'rails' for help."
exit(1)
end
when '--version', '-v'
ARGV.unshift '--version'
......
......@@ -83,6 +83,16 @@ def test_application_new_exits_with_message_and_non_zero_code_when_generating_in
assert_equal false, $?.success?
end
def test_application_new_show_help_message_inside_existing_rails_directory
app_root = File.join(destination_root, 'myfirstapp')
run_generator [app_root]
output = Dir.chdir(app_root) do
`rails new --help`
end
assert_match /rails new APP_PATH \[options\]/, output
assert_equal true, $?.success?
end
def test_application_name_is_detected_if_it_exists_and_app_folder_renamed
app_root = File.join(destination_root, "myapp")
app_moved_root = File.join(destination_root, "myapp_moved")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册