Sha256: d415e49348ea58f320e9f513067145ee32adf8c6f3c8b3fd7e7e89756cf298b5
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
module Rallycat class Help def to_s <<-HELP Rallycat is a command line utility for interacting with Rally. Configuration: Configuration is available through a ~/.rallycatrc file formatted as YAML. The file should have two keys: `username` and `password` for authenticating with the Rally API. Additionally, the `-u [USERNAME]` and `-p [PASSWORD]` flags may be provided at runtime and will take higher precedence than the configuration file. Global Options: -u [USERNAME] # The Rally user -p [PASSWORD] # The password for the Rally user -h, --help # Displays this help text Commands: rallycat cat <story number> # Displays the user story or defect rallycat update <task number> # Displays the user story [--blocked | -b] [--in-progress | -i] [--completed | -c] [--defined | -d] [--owner | -o <fullname>] rallycat help # Displays this help text HELP end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rallycat-0.3.1 | lib/rallycat/help.rb |
rallycat-0.3.0 | lib/rallycat/help.rb |