lib/renuo/cli.rb in renuo-cli-1.3.1 vs lib/renuo/cli.rb in renuo-cli-1.4.0

- old
+ new

@@ -125,11 +125,12 @@ end end command 'release' do |c| c.syntax = 'renuo release' - c.summary = 'Deploy a project to master in one command.' - c.description = 'Deploys a project to master as either a Major, Minor, Patch or Custom release.' + c.summary = 'Release a projects state of develop (on github) to master in one command.' + c.description = 'Creates a new release version of a project on master as either a Major, Minor, '\ + 'Patch or Custom release based on the current state of develop on Github' c.example 'renuo release my-project minor', 'release a minor release of my-project' c.example 'renuo release my-project custom 2.5.0', 'release my-project as release 2.5.0' c.action do|args| ReleaseProject.new.run(args) end