Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

44 lines (26 loc) · 1.06 KB

Contributing to envbash

You know, so I can remember how to do this stuff.

Running the tests

First, you probably want to set up RVM or rbenv to isolate development, or use virtualenv like I do.

Next install the dependencies:

$ bundle install

Then run the tests:

$ rake test
Run options: --seed 54398

# Running:

.......okay!
.......

Finished in 0.729666s, 19.1869 runs/s, 41.1147 assertions/s.

14 runs, 30 assertions, 0 failures, 0 errors, 0 skips
Coverage report generated for Unit Tests to /home/aron/src/ss/envbash-ruby/coverage. 135 / 135 LOC (100.0%) covered.

Making a release

Bump the version in envbash.gemspec, commit it, then:

$ rake release

Helpful references