Skip to content

Commit

Permalink
moved .editorconfig and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Hluchan committed May 18, 2016
1 parent e7e9b13 commit b8794d4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions generators/app/index.js
Expand Up @@ -41,13 +41,21 @@ module.exports = yeoman.Base.extend({
);
}

this.fs.copy(
this.templatePath('gitignore'),
this.destinationPath('.gitignore')
);

this.fs.copy(
this.templatePath('editorconfig'),
this.destinationPath('.editorconfig')
);

writeFile('gradle/wrapper/gradle-wrapper.jar');
writeFile('gradle/wrapper/gradle-wrapper.properties');
writeFile('gradle/ci.gradle');
writeFile('gradle/idea.gradle');
writeFile('gradle/osSpecificDownloads.gradle');
writeFile('.gitignore');
writeFile('.editorconfig');
writeFile('build.gradle');
writeFile('gradlew');
writeFile('gradlew.bat');
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "generator-geb",
"version": "1.0.4",
"version": "1.0.5",
"description": "Generates a Geb Automation project",
"homepage": "",
"author": {
Expand Down

0 comments on commit b8794d4

Please sign in to comment.