From 5ae30f92a2f1670b81f6d55cba9aa4ccec23e147 Mon Sep 17 00:00:00 2001 From: cueedee Date: Tue, 12 May 2015 17:53:24 +0200 Subject: [PATCH] fix(all generators): normalize taglines --- README.md | 5 +++-- generators/app/index.js | 11 ++++++----- generators/collection/index.js | 5 +++-- generators/demo/index.js | 5 +++-- generators/model/index.js | 5 +++-- generators/view/index.js | 5 +++-- package.json | 2 +- 7 files changed, 22 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 082aafdf..96b95b89 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/generators/app/index.js b/generators/app/index.js index 69ccc064..115bd433 100644 --- a/generators/app/index.js +++ b/generators/app/index.js @@ -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 () { @@ -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 diff --git a/generators/collection/index.js b/generators/collection/index.js index 086cfabd..b556f71a 100644 --- a/generators/collection/index.js +++ b/generators/collection/index.js @@ -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 () diff --git a/generators/demo/index.js b/generators/demo/index.js index 1c151cae..e0404313 100644 --- a/generators/demo/index.js +++ b/generators/demo/index.js @@ -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() diff --git a/generators/model/index.js b/generators/model/index.js index 18e42b19..1a0eb8a0 100644 --- a/generators/model/index.js +++ b/generators/model/index.js @@ -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 () diff --git a/generators/view/index.js b/generators/view/index.js index dbe24dc8..63083c40 100644 --- a/generators/view/index.js +++ b/generators/view/index.js @@ -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 () diff --git a/package.json b/package.json index 98c1c633..5c05f19a 100644 --- a/package.json +++ b/package.json @@ -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"