README.md in forkcms_deploy-4.0.1 vs README.md in forkcms_deploy-4.1.0

- old
+ new

@@ -9,11 +9,11 @@ ## Available recipes * forkcms_deploy - ForkCMS specific tasks. * forkcms_deploy/defaults - Best practices for each deployment. ## Example recipe -This recipe will deploy the ForkCMS-instance to your-app.com. +This recipe will deploy the ForkCMS-instance to your-app.com. load 'deploy' if respond_to?(:namespace) # cap2 differentiator # set your application name here set :application, "your-app.com" # eg.: sumocoders.be @@ -24,11 +24,11 @@ # deploy to path (on server) set :deploy_to, "/home/#{user}/apps/#{application}" # eg.: /home/sumocoders/apps/sumocoders.be # set document_root set :document_root, "/home/#{user}/www.your-app.com" # eg.: /home/sumocoders/default_www - + # define roles server "your-app.com", :app, :web, :db, :primary => true # eg.: crsolutions.be # git repo & branch set :repository, "git@your-git.com:your-app.git" # eg.: git@crsolutions.be:sumocoders.be.git @@ -47,5 +47,21 @@ Install the gem like this: gem install forkcms_deploy INSTALL exit 1 end + +# Bumping the version of this gem + +1. increase the version with one of the following commands + +```bash +rake version:bump:patch +rake version:bump:minor +rake version:bump:patch +``` + +2. release the gem + +```bash +rake release +```