Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Remove several additional references to the `lib` directory.
  • Loading branch information
camertron authored Jan 25, 2020
1 parent 648cf60 commit 3f750d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,13 @@ require 'gelauto/rspec'
to your spec_helper.rb, Rakefile, or wherever RSpec is configured. You'll also need to set the `GELAUTO_FILES` environment variable when running your test suite. For example:

```bash
GELAUTO_FILES=$(find ./lib -name *.rb) bundle exec rspec
GELAUTO_FILES=$(find . -name *.rb) bundle exec rspec
```

Files can be separated by spaces, newlines, or commas. If you want Gelauto to annotate them, set `GELAUTO_ANNOTATE` to `true`, eg:

```bash
GELAUTO_FILES=$(find ./lib -name *.rb) GELAUTO_ANNOTATE=true bundle exec rspec
GELAUTO_FILES=$(find . -name *.rb) GELAUTO_ANNOTATE=true bundle exec rspec
```

Finally, set `GELAUTO_RBI=/path/to/output.rbi` to have Gelauto emit an RBI file when the test suite finishes.
Expand Down

0 comments on commit 3f750d7

Please sign in to comment.