Merge pull request #39523 from p8/rename-stubs-out-to-generate

Replace 'Stubs out' with 'Generates' in generator USAGE's [ci skip]
This commit is contained in:
Eugene Kenny 2020-06-03 10:40:40 +01:00 committed by GitHub
commit 751d46af4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
Description:
============
Stubs out a new cable channel for the server (in Ruby) and client (in JavaScript).
Generates a new cable channel for the server (in Ruby) and client (in JavaScript).
Pass the channel name, either CamelCased or under_scored, and an optional list of channel actions as arguments.
Example:

View File

@ -1,6 +1,6 @@
Description:
============
Stubs out a new mailbox class in app/mailboxes and invokes your template
Generates a new mailbox class in app/mailboxes and invokes your template
engine and test framework generators.
Example:

View File

@ -1,6 +1,6 @@
Description:
============
Stubs out a new mailer and its views. Passes the mailer name, either
Generates a new mailer and its views. Passes the mailer name, either
CamelCased or under_scored, and an optional list of emails as arguments.
This generates a mailer class in app/mailers and invokes your template

View File

@ -267,7 +267,7 @@ ActiveRecord options:
...
Description:
Stubs out a new model. Pass the model name, either CamelCased or
Generates a new model. Pass the model name, either CamelCased or
under_scored, and an optional list of attribute pairs as arguments.
...

View File

@ -1,5 +1,5 @@
Description:
Stubs out new asset placeholders. Pass the asset name, either CamelCased
Generates new asset placeholders. Pass the asset name, either CamelCased
or under_scored.
To create an asset within a folder, specify the asset's name as a

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new controller and its views. Pass the controller name, either
Generates a new controller and its views. Pass the controller name, either
CamelCased or under_scored, and a list of views as arguments.
To create a controller within a module, specify the controller name as a

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new generator at lib/generators. Pass the generator name as an argument,
Generates a new generator at lib/generators. Pass the generator name as an argument,
either CamelCased or snake_cased.
Example:

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new helper. Pass the helper name, either CamelCased
Generates a new helper. Pass the helper name, either CamelCased
or under_scored.
To create a helper within a module, specify the helper name as a

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new integration test. Pass the name of the test, either
Generates a new integration test. Pass the name of the test, either
CamelCased or under_scored, as an argument.
This generator invokes the current integration tool, which defaults to

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new database migration. Pass the migration name, either
Generates a new database migration. Pass the migration name, either
CamelCased or under_scored, and an optional list of attribute pairs as arguments.
A migration class is generated in db/migrate prefixed by a timestamp of the current date and time.

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new model. Pass the model name, either CamelCased or
Generates a new model. Pass the model name, either CamelCased or
under_scored, and an optional list of attribute pairs as arguments.
Attribute pairs are field:type arguments specifying the

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new resource including an empty model and controller suitable
Generates a new resource including an empty model and controller suitable
for a RESTful, resource-oriented application. Pass the singular model name,
either CamelCased or under_scored, as the first argument, and an optional
list of attribute pairs.

View File

@ -1,5 +1,5 @@
Description:
Stubs out a scaffolded controller, its seven RESTful actions and related
Generates a scaffolded controller, its seven RESTful actions and related
views. Pass the model name, either CamelCased or under_scored. The
controller name is retrieved as a pluralized version of the model name.

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new system test. Pass the name of the test, either
Generates a new system test. Pass the name of the test, either
CamelCased or under_scored, as an argument.
This generator invokes the current system tool, which defaults to

View File

@ -1,5 +1,5 @@
Description:
Stubs out a new Rake task. Pass the namespace name, and a list of tasks as arguments.
Generates a new Rake task. Pass the namespace name, and a list of tasks as arguments.
This generates a task file in lib/tasks.