Skip to content

Commit

Permalink
Add bundle exec instructions to README.
Browse files Browse the repository at this point in the history
Added instructions for running with bundler to avoid issues like #237
  • Loading branch information
bradgessler committed Dec 31, 2013
1 parent 43a8c42 commit cfdf4d7
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 cfdf4d7

Please sign in to comment.