Class: Rouge::Lexers::Make

Inherits:
RegexLexer show all
Defined in:
lib/rouge/lexers/make.rb

Constant Summary

Constants inherited from RegexLexer

RegexLexer::MAX_NULL_STEPS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from RegexLexer

[], #delegate, get_state, #get_state, #group, #in_state?, #pop!, #push, #reset!, #run_callback, #run_rule, #scan, #stack, start, start_procs, state, #state, #state?, states, #step, #stream_tokens, #token

Methods inherited from Rouge::Lexer

aliases, #debug, default_options, filenames, find, #get_tokens, guess, guess_by_filename, guess_by_mimetype, guess_by_source, lex, #lex, mimetypes, #option, #options, register, #reset!, #stream_tokens, tag

Constructor Details

#initialize(opts = {}) ⇒ Make

Returns a new instance of Make.



23
24
25
26
# File 'lib/rouge/lexers/make.rb', line 23

def initialize(opts={})
  super
  @shell = Shell.new(opts)
end

Class Method Details

.analyze_text(text) ⇒ Object



9
10
11
# File 'lib/rouge/lexers/make.rb', line 9

def self.analyze_text(text)
  return 0.2 if text =~ /^\.PHONY:/
end