From 645088a1d98cf2f684d57e6817ca40064b554fc7 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Sun, 6 Dec 2015 11:30:10 -0800 Subject: [PATCH] Correctly document the rake tasks --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1a7546967..cdbaaa0fc 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)