diff --git a/README.md b/README.md index 5b1b5c7..61cb3f4 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,16 @@ Yeoman generator for building Drupal sites. ## Install ``` +// Install bundler +sudo gem install -n /usr/local/bin bundler + // Install yeoman (if you don't have it already) -npm install -g yo +npm install -g yo // Install generator-drupalal npm install -g https://github.com/activelamp/generator-drupalal.git // Run generator-drupalal +yo drupalal ``` diff --git a/app/index.js b/app/index.js index eab85e9..a127561 100644 --- a/app/index.js +++ b/app/index.js @@ -26,7 +26,7 @@ module.exports = generators.Base.extend({ }, { name: 'profileMachineName', - message: 'Would should the profile machine name be?', + message: 'What should the profile machine name be?', default: function(props) { return changeCase.snakeCase(props.profileName) } @@ -66,7 +66,7 @@ module.exports = generators.Base.extend({ var files = glob.sync(self.templatePath() + '/**/*'); var drushVersion = "7.1.0"; var drushCore = "7.x"; - var drupalCore = "7.41"; + var drupalCore = "7.42"; files.forEach(function(file) { if (fs.lstatSync(file).isDirectory()) { @@ -132,7 +132,7 @@ module.exports = generators.Base.extend({ }); // Copy the .gitignore - self.fs.copy(self.templatePath('.gitignore'), self.destinationPath('.gitignore')); + // self.fs.copy(self.templatePath('.gitignore'), self.destinationPath('.gitignore')); } }, @@ -155,4 +155,4 @@ module.exports = generators.Base.extend({ } } -}); \ No newline at end of file +});