Skip to content

Commit

Permalink
fix(travis): fix gem install travis
Browse files Browse the repository at this point in the history
When running `gem install travis`, the opts `--no-ri` and `--no-rdoc`
are deprecated.
Switched to `--no-document`.

fix #77
  • Loading branch information
sharvit committed Jan 4, 2020
1 parent 702a71d commit 2c09db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/generators/travis/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class extends BaseGenerator {
const { repository, githubToken } = this.options;

this.commander.run([
'gem install travis --no-ri --no-rdoc --quiet',
'gem install travis --no-document --quiet',
`travis login --github-token ${githubToken}`,
`travis enable -r ${repository}`,
]);
Expand Down

0 comments on commit 2c09db2

Please sign in to comment.