Class: Rouge::CLI
- Inherits:
-
Object
show all
- Defined in:
- lib/rouge/cli.rb
Defined Under Namespace
Classes: Error, Guess, Help, Highlight, List, Style, Version
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(options = {}) ⇒ CLI
Returns a new instance of CLI.
78
79
|
# File 'lib/rouge/cli.rb', line 78
def initialize(options={})
end
|
Class Method Details
.class_from_arg(arg) ⇒ Object
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'lib/rouge/cli.rb', line 89
def self.class_from_arg(arg)
case arg
when 'version', '--version', '-v'
Version
when 'help'
Help
when 'highlight', 'hi'
Highlight
when 'style'
Style
when 'list'
List
when 'guess'
Guess
end
end
|
.doc {|%|usage: rougify [command] [args...]|| ... } ⇒ Object
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# File 'lib/rouge/cli.rb', line 37
def self.doc
return enum_for(:doc) unless block_given?
yield %|usage: rougify [command] [args...]|
yield %||
yield %|where <command> is one of:|
yield %| highlight #{Highlight.desc}|
yield %| help #{Help.desc}|
yield %| style #{Style.desc}|
yield %| list #{List.desc}|
yield %| guess #{Guess.desc}|
yield %| version #{Version.desc}|
yield %||
yield %|See `rougify help <command>` for more info.|
end
|
.error!(msg, status = 1) ⇒ Object
81
82
83
|
# File 'lib/rouge/cli.rb', line 81
def self.error!(msg, status=1)
raise Error.new(msg, status)
end
|
.normalize_syntax(argv) ⇒ Object
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
|
# File 'lib/rouge/cli.rb', line 415
def self.normalize_syntax(argv)
out = []
argv.each do |arg|
case arg
when /^(--\w+)=(.*)$/
out << $1 << $2
when /^(-\w)(.+)$/
out << $1 << $2
else
out << arg
end
end
out
end
|
.parse(argv = ARGV) ⇒ Object
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# File 'lib/rouge/cli.rb', line 61
def self.parse(argv=ARGV)
argv = normalize_syntax(argv)
mode = argv.shift
klass = class_from_arg(mode)
return klass.parse(argv) if klass
case mode
when '-h', '--help', 'help', '-help', nil
Help.parse(argv)
else
argv.unshift(mode) if mode
Highlight.parse(argv)
end
end
|
Instance Method Details
#error!(*a) ⇒ Object
85
86
87
|
# File 'lib/rouge/cli.rb', line 85
def error!(*a)
self.class.error!(*a)
end
|