Skip to content

Commit

Permalink
fix(all generators): normalize taglines
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed May 12, 2015
1 parent 295b833 commit 5ae30f9
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## generator-bat ( Backbone Application Template )
Ever got tired of having to bootstrap your new projects over and over again? This Yeoman generator will generate it for you!
# BAT, the Backbone Application Template; a Yeoman generator collection created by marviq

Ever got tired of having to scaffold your new projects over and over again? Yeoman and BAT will do it for you!

## Why would you want to use BAT?
When using the BAT generator you can immediatly start developing your application instead of worrying about setting everything up.
Expand Down
11 changes: 6 additions & 5 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ var AppGenerator = generators.Base.extend(
}

, description:
chalk.bold( 'This is the ' + chalk.cyan( 'project and barebones app' ) + ' generator for the Backbone Application Template, powered by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.' )
chalk.bold(
'This is the ' + chalk.cyan( 'project and barebones app' )
+ ' generator for BAT, the Backbone Application Template'
+ ' created by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
)

, initializing: function ()
{
Expand Down Expand Up @@ -225,10 +229,7 @@ var AppGenerator = generators.Base.extend(

// Have Yeoman greet the user.
//
this.log( yosay(
'Welcome to the BAT generator! (Backbone Application Template)\n'
+ 'Powered by marviq'
));
this.log( yosay( 'Welcome to BAT, the Backbone Application Template' ));

this.prompt(
prompts
Expand Down
5 changes: 3 additions & 2 deletions generators/collection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ var CollectionGenerator = generators.Base.extend(

, description:
chalk.bold(
'This is the ' + chalk.cyan( 'backbone collection' ) + ' generator for the Backbone Application Template'
+ ', powered by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
'This is the ' + chalk.cyan( 'backbone collection' )
+ ' generator for BAT, the Backbone Application Template'
+ ' created by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
)

, initializing: function ()
Expand Down
5 changes: 3 additions & 2 deletions generators/demo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ var DemoGenerator = generators.Base.extend(

, description:
chalk.bold(
'This is the ' + chalk.cyan( 'demo app' ) + ' generator for the Backbone Application Template'
+ ', powered by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
'This is the ' + chalk.cyan( 'demo app' )
+ ' generator for BAT, the Backbone Application Template'
+ ' created by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
)

, configuring: function()
Expand Down
5 changes: 3 additions & 2 deletions generators/model/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ var ModelGenerator = generators.Base.extend(

, description:
chalk.bold(
'This is the ' + chalk.cyan( 'backbone model' ) + ' generator for the Backbone Application Template'
+ ', powered by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
'This is the ' + chalk.cyan( 'backbone model' )
+ ' generator for BAT, the Backbone Application Template'
+ ' created by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
)

, initializing: function ()
Expand Down
5 changes: 3 additions & 2 deletions generators/view/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ var ViewGenerator = generators.Base.extend(

, description:
chalk.bold(
'This is the ' + chalk.cyan( 'backbone view' ) + ' generator for the Backbone Application Template'
+ ', powered by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
'This is the ' + chalk.cyan( 'backbone view' )
+ ' generator for BAT, the Backbone Application Template'
+ ' created by ' + chalk.blue( 'marv' ) + chalk.red( 'iq' ) + '.'
)

, initializing: function ()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"yeoman-generator": "^0.19.2",
"yosay": "^1.0.3"
},
"description": "BAT ( Backbone Application Template ). A yeoman-generator created by Marviq.",
"description": "BAT, the Backbone Application Template; a Yeoman generator collection created by marviq",
"devDependencies": {
"coffeelint": "^1.9.6",
"jshint": "^2.7.0"
Expand Down

0 comments on commit 5ae30f9

Please sign in to comment.