0

「rails」コマンドの出力によると、「rails application」コマンドがあります。それを使用すると、「rails new」コマンドからの出力が表示されます。

...

Description:
The 'rails new' command creates a new Rails application with a default
directory structure and configuration at the path you specify.

You can specify extra command-line arguments to be used every time
'rails new' runs in the .railsrc configuration file in your home directory.

Note that the arguments specified in the .railsrc file don't affect the
defaults values shown above in this help message.

Example:
rails new ~/Code/Ruby/weblog

This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
See the README in the newly created application to get going.

Mb 私は何か間違ったことをしていますか? または、これらのコマンドは同じことを行いますか? 私の書き方が悪くてすみません。

4

1 に答える 1

0

rails applicationは有効なコマンドではありません。

rails無効なコマンドが指定された場合、コマンド ライン ツールはマニュアル ページを出力します。ほとんどのコマンド ライン ツールは同じことを行います。

実行rails nonexistent_commandすると、man ページが出力されます。

Rails アプリの外部にある場合は、 のマニュアル ページが出力されrails newます。Rails app dir 内にある場合は、他の可能なコマンドが出力されます。rails generateなどrails console。_

于 2013-03-15T01:56:45.093 に答える