Class: Rouge::CLI::Highlight
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Rouge::CLI
class_from_arg, #error!, error!
Constructor Details
#initialize(opts = {}) ⇒ Highlight
Returns a new instance of Highlight.
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
# File 'lib/rouge/cli.rb', line 236
def initialize(opts={})
@input_file = opts[:input_file]
if opts[:lexer]
@lexer_class = Lexer.find(opts[:lexer]) \
or error! "unkown lexer #{opts[:lexer].inspect}"
else
@lexer_name = opts[:lexer]
@mimetype = opts[:mimetype]
end
@lexer_opts = opts[:lexer_opts]
formatter_class = Formatter.find(opts[:formatter]) \
or error! "unknown formatter #{opts[:formatter]}"
@formatter = formatter_class.new(opts[:formatter_opts])
end
|
Instance Attribute Details
Returns the value of attribute formatter.
234
235
236
|
# File 'lib/rouge/cli.rb', line 234
def formatter
@formatter
end
|
Returns the value of attribute input_file.
234
235
236
|
# File 'lib/rouge/cli.rb', line 234
def input_file
@input_file
end
|
#lexer_name ⇒ Object
Returns the value of attribute lexer_name.
234
235
236
|
# File 'lib/rouge/cli.rb', line 234
def lexer_name
@lexer_name
end
|
#mimetype ⇒ Object
Returns the value of attribute mimetype.
234
235
236
|
# File 'lib/rouge/cli.rb', line 234
def mimetype
@mimetype
end
|
Class Method Details
.desc ⇒ Object
151
152
153
|
# File 'lib/rouge/cli.rb', line 151
def self.desc
"highlight code"
end
|
.doc {|%[usage: rougify highlight <filename> [options...]]| ... } ⇒ Object
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
# File 'lib/rouge/cli.rb', line 155
def self.doc
return enum_for(:doc) unless block_given?
yield %[usage: rougify highlight <filename> [options...]]
yield %[ rougify highlight [options...]]
yield %[]
yield %[--input-file|-i <filename> specify a file to read, or - to use stdin]
yield %[]
yield %[--lexer|-l <lexer> specify the lexer to use.]
yield %[ If not provided, rougify will try to guess]
yield %[ based on --mimetype, the filename, and the]
yield %[ file contents.]
yield %[]
yield %[--formatter|-f <opts> specify the output formatter to use.]
yield %[ If not provided, rougify will default to]
yield %[ terminal256.]
yield %[]
yield %[--mimetype|-m <mimetype> specify a mimetype for lexer guessing]
yield %[]
yield %[--lexer-opts|-L <opts> specify lexer options in CGI format]
yield %[ (opt1=val1&opt2=val2)]
yield %[]
yield %[--formatter-opts|-F <opts> specify formatter options in CGI format]
yield %[ (opt1=val1&opt2=val2)]
end
|
.parse(argv) ⇒ Object
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
# File 'lib/rouge/cli.rb', line 181
def self.parse(argv)
opts = {
:formatter => 'terminal256',
:input_file => '-',
:lexer_opts => {},
:formatter_opts => {},
}
until argv.empty?
arg = argv.shift
case arg
when '--input-file', '-i'
opts[:input_file] = argv.shift
when '--mimetype', '-m'
opts[:mimetype] = argv.shift
when '--lexer', '-l'
opts[:lexer] = argv.shift
when '--formatter', '-f'
opts[:formatter] = argv.shift
when '--lexer-opts', '-L'
opts[:lexer_opts] = parse_cgi(argv.shift)
when '--formatter-opts', '-F'
opts[:formatter_opts] = parse_cgi(argv.shift)
when /^--/
error! "unknown option #{arg.inspect}"
else
opts[:input_file] = arg
end
end
new(opts)
end
|
Instance Method Details
218
219
220
|
# File 'lib/rouge/cli.rb', line 218
def input
@input ||= input_stream.read
end
|
214
215
216
|
# File 'lib/rouge/cli.rb', line 214
def input_stream
@input_stream ||= FileReader.new(@input_file)
end
|
#lexer ⇒ Object
230
231
232
|
# File 'lib/rouge/cli.rb', line 230
def lexer
@lexer ||= lexer_class.new(@lexer_opts)
end
|
#lexer_class ⇒ Object
222
223
224
225
226
227
228
|
# File 'lib/rouge/cli.rb', line 222
def lexer_class
@lexer_class ||= Lexer.guess(
:filename => @input_file,
:mimetype => @mimetype,
:source => input_stream,
)
end
|
#run ⇒ Object
255
256
257
|
# File 'lib/rouge/cli.rb', line 255
def run
formatter.format(lexer.lex(input), &method(:print))
end
|