Skip to content

Commit

Permalink
Merge pull request prontolabs#70 from andyw8/patch-1
Browse files Browse the repository at this point in the history
Re-order methods of running in README
  • Loading branch information
mmozuras committed Feb 18, 2015
2 parents 01a0d3c + 574a502 commit 151a614
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ to your [styleguide](https://github.com/mmozuras/pronto-rubocop), [are DRY](http

Pronto runs the checks on a diff between the current HEAD and the provided commit-ish (default is master).

### Local Changes

You can run Pronto locally. First, install Pronto and the runners you want to use:
```bash
gem install pronto
gem install pronto-rubocop
```
Then navigate to the repository you want to run Pronto on, and:
```bash
git checkout feature/branch
pronto run # Pronto runs against master by default
```

Just run `pronto` without any arguments to see what Pronto is capable of.

### GitHub Integration

You can run Pronto as a step of your CI builds and get the results as comments
Expand Down Expand Up @@ -92,21 +107,6 @@ formatter = Pronto::Formatter::GitlabFormatter.new
Pronto.run('origin/master', '.', formatter)
```

### Local Changes

You can run Pronto locally. First, install Pronto and the runners you want to use:
```bash
gem install pronto
gem install pronto-rubocop
```
Then navigate to the repository you want to run Pronto on, and:
```bash
git checkout feature/branch
pronto run # Pronto runs against master by default
```

Just run `pronto` without any arguments to see what Pronto is capable of.

## Runners

Pronto can run various tools and libraries, as long as there's a runner for it.
Expand Down

0 comments on commit 151a614

Please sign in to comment.