我正在尝试使用Scaffold命令生成一个Rails应用程序,就像在每个初学者的教程中一样:
rails generate scaffold Post name:string title:string content:text
我得到了这个垃圾:
> Usage:
> rails new APP_PATH [options]
>
> Options:
> -r, [--ruby=PATH] # Path to the Ruby binary of your choice
> # Default: /Users/etayluz/.rvm/rubies/ruby-2.2.1/bin/ruby
> -m, [--template=TEMPLATE] # Path to some application template (can be a filesystem path or URL)
我在这里缺少什么?
答案 0 :(得分:2)
您无法使用scaffold命令创建rails应用程序。首先使用
创建一个新的rails应用程序rails new app_name
然后使用scaffold命令生成迁移文件,模型,控制器等