Skip to content

Commit

Permalink
🐛 Fix keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mijdavis2 committed Jun 6, 2016
1 parent 4f660da commit 034f458
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,37 +43,37 @@ module.exports = generators.Base.extend({
this.templatePath('tests/*'),
this.destinationPath('tests'),
{
app_name: this.namespace,
app_title: _.startCase(this.namespace),
app_name: this.namespace,
app_title: _.startCase(this.namespace),
user_name: this.username
}
);
this.fs.copyTpl(
this.templatePath('_travis.yml'),
this.destinationPath('.travis.yml'),
{
appName: this.namespace,
appTitle: _.startCase(this.namespace),
userName: this.username
}
{
app_name: this.namespace,
app_title: _.startCase(this.namespace),
user_name: this.username
}
);
this.fs.copyTpl(
this.templatePath('_coveragerc'),
this.destinationPath('.coveragerc'),
{
appName: this.namespace,
appTitle: _.startCase(this.namespace),
userName: this.username
}
{
app_name: this.namespace,
app_title: _.startCase(this.namespace),
user_name: this.username
}
);
this.fs.copyTpl(
this.templatePath('_gitignore'),
this.destinationPath('.gitignore'),
{
appName: this.namespace,
appTitle: _.startCase(this.namespace),
userName: this.username
}
{
app_name: this.namespace,
app_title: _.startCase(this.namespace),
user_name: this.username
}
);
}
});
2 changes: 1 addition & 1 deletion app/templates/_travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ install:
- "pip install -r requirements.txt"
- "pip install coveralls"
script:
- py.test -v --cov-report term-missing --cov=<%= appName %> -r w tests
- py.test -v --cov-report term-missing --cov=<%= app_name %> -r w tests
after_success:
- coveralls
- coverage xml
Expand Down

0 comments on commit 034f458

Please sign in to comment.