Class: Commands
- Inherits:
-
Object
- Object
- Commands
- Defined in:
- lib/commands.rb
Class Method Summary collapse
Class Method Details
.config(options = {}) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/commands.rb', line 11 def config( = {}) if [:reset] == false Configuration.reset!([:config_path]) else Configuration.print end end |
.issues(options = {}) ⇒ Object
19 20 21 22 23 |
# File 'lib/commands.rb', line 19 def issues( = {}) validate_flags(, :keys, :output) print_issues("issues", ) end |
.iteration(options = {}) ⇒ Object
25 26 27 28 29 |
# File 'lib/commands.rb', line 25 def iteration( = {}) validate_flags(, :project, :version, :output) print_issues("iteration", ) end |