summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-12-08 13:06:05 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2015-12-08 13:06:05 -0800
commitfa2115a9aded573abd540f8caad2eeb300c2dc70 (patch)
tree78125fa8bfe443d9a92d081e5a9642371960de42
parenta964fbda7c4e2bb0fd32149052b96bdcc0bd4bcf (diff)
parent645088a1d98cf2f684d57e6817ca40064b554fc7 (diff)
downloadohai-fa2115a9aded573abd540f8caad2eeb300c2dc70.tar.gz
Merge pull request #676 from tas50/readme
Correctly document the rake tasks
-rw-r--r--README.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/README.md b/README.md
index 1a754696..cdbaaa0f 100644
--- a/README.md
+++ b/README.md
@@ -54,13 +54,11 @@ You can run individual test files by running the rspec executable:
Ohai has some Rake tasks for doing various things.
rake -T
- rake clobber_package # Remove package products
- rake gem # Build the gem file ohai-$VERSION.gem
- rake install # install the gem locally
- rake make_spec # create a gemspec file
- rake package # Build all the packages
- rake repackage # Force a rebuild of the package files
- rake spec # Run specs
+ 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
($VERSION is the current version, from the GemSpec in Rakefile)