README.markdown in heroku_deploy-0.0.5 vs README.markdown in heroku_deploy-0.0.6

- old
+ new

@@ -1,4 +1,20 @@ # heroku_deploy This gem is an easy way to quickly setup and deploy staging and production environments for -your project on heroku. \ No newline at end of file +your project on heroku. + +###Installation Instructions +Install the gem: + sudo gem install heroku_deploy + +In environment.rb + config.gem "heroku_deploy" + +In your Rakefile: + begin + require 'heroku_deploy' + HerokuDeploy::Tasks.new( :staging_app => "example-app-staging", :production_app => "example-app") + rescue LoadError + puts "heroku_deploy (or a dependency) not available. Install it with: gem install heroku_deploy" + end +