Skip to content

Commit

Permalink
Merge pull request #238 from bradgessler/patch-1
Browse files Browse the repository at this point in the history
Add `bundle exec` instructions to README.
  • Loading branch information
thibaudgg committed Dec 31, 2013
2 parents 43a8c42 + cfdf4d7 commit 6e1852c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ guard :rspec, cmd: 'spring rspec -f doc' do
end
```

### Running with bundler

Running `bundle exec guard` will not run the specs with bundler. You need to change `cmd` the option to include `bundle exec`:

``` ruby
guard :rspec, cmd: 'bundle exec guard' do
# ...
end
```

### List of available options:

``` ruby
Expand Down

0 comments on commit 6e1852c

Please sign in to comment.