diff options
author | Tim Smith <tsmith@chef.io> | 2018-09-09 11:24:54 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-09-09 11:24:54 -0700 |
commit | 1e20788e2dc315e8ebf8331ca6abfba24d0d7605 (patch) | |
tree | cd297753d877a08dd017d88fde2be3ccaeda7b7b /README.md | |
parent | 901d003e42839145fe099172a6c56d2432c824ad (diff) | |
download | ohai-1e20788e2dc315e8ebf8331ca6abfba24d0d7605.tar.gz |
More rake / Travis updatesrakefile
Add the gem groups, speed up Travis installs, update the readme tasks
documentation.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -37,11 +37,16 @@ Ohai has some Rake tasks for doing various things. ``` rake -T -rake build # Build the gem file ohai-$VERSION.gem -rake install # install the gem locally -rake install:local # install the gem locally without network access -rake release # Create tag $VERSION, build gem, and push to Rubygems -rake spec # Run RSpec tests +rake build # Build ohai-$VERSION.gem into the pkg directory +rake clean # Remove any temporary products +rake clobber # Remove any generated files +rake docs # Generate YARD Documentation +rake install # Build and install ohai-$VERSION.gem into system gems +rake install:local # Build and install ohai-$VERSION.gem into system gems without network access +rake release[remote] # Create tag $VERSION and build and push ohai-$VERSION.gem to rubygems.org +rake spec # Run RSpec code examples +rake style # Run Chefstyle tests +rake style:auto_correct # Auto-correct RuboCop offenses ($VERSION is the current version, from the GemSpec in Rakefile) ``` |