rails 缩略命令
在执行 rails 命令的时候,可以使用缩略命令来提高打字效率
比如 rails g
等于 rails generate
, rails s
等于 rails server
更多用法可以在终端机里运行 rails --help
查看
The most common rails commands are:
generate Generate new code (short-cut alias: "g")
console Start the Rails console (short-cut alias: "c")
server Start the Rails server (short-cut alias: "s")
dbconsole Start a console for the database specified in config/database.yml
(short-cut alias: "db")
new Create a new Rails application. "rails new my_app" creates a
new application called MyApp in "./my_app"
In addition to those, there are:
destroy Undo code generated with "generate" (short-cut alias: "d")
plugin new Generates skeleton for developing a Rails plugin
runner Run a piece of code in the application environment (short-cut alias: "r")
Updated less than a minute ago