From 00b5199802341e68223e79d51f089742e9e3aec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mindaugas=20Moz=C5=ABras?= Date: Sun, 2 Nov 2014 10:52:58 +0200 Subject: [PATCH] Improve example of adding runners in README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index be966ce2..604313d0 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,15 @@ on GitHub commits using `GithubFormatter` or `GithubPullRequestFormatter`. Add Pronto runners you want to use to your Gemfile: ```ruby -gem 'pronto-rubocop' +gem 'pronto' +gem 'pronto-rubocop', require: false +gem 'pronto-scss', require: false ``` or gemspec file: ```ruby +s.add_development_dependency 'pronto' s.add_development_dependency 'pronto-rubocop' +s.add_development_dependency 'pronto-scss' ``` Set the GITHUB_ACCESS_TOKEN environment variable to [OAuth token](https://help.github.com/articles/creating-an-access-token-for-command-line-use) that has access to the repository.