Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Finished lexing in:
We use `rake` and `rake-compiler` to compile the Ruby extension. Running rake will generate the needed templates, run make, build the needed artifacts, and run the Ruby tests.

```bash
rake
bundle exec rake
```

If `rake` was successful you can use `bundle console` to interact with `Herb`:
Expand Down Expand Up @@ -131,7 +131,7 @@ make test && ./run_herb_tests
#### For the Ruby Tests

```bash
rake test
bundle exec rake test
```

### Clean
Expand Down
5 changes: 3 additions & 2 deletions bin/integration
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

set -e # Exit on error

rake clean
rake
bundle exec rake clean
bundle install
bundle exec rake

./run_herb_tests

Expand Down
Loading