Codebase list ohcount / 29f5ec7d-1b44-45ad-9822-90a9c74d506b/main ruby / gestalt / rules / xml_keyword_rule.rb
29f5ec7d-1b44-45ad-9822-90a9c74d506b/main

Tree @29f5ec7d-1b44-45ad-9822-90a9c74d506b/main (Download .tar.gz)

xml_keyword_rule.rb @29f5ec7d-1b44-45ad-9822-90a9c74d506b/mainraw · history · blame

module Ohcount
	module Gestalt
		class XmlKeywordRule < KeywordRule

			def initialize(*keywords)
				super('xml',*keywords)
			end

			def trigger_file?(source_file)
				return false unless source_file.polyglot = 'xml'
				regexp.match(source_file.language_breakdowns('xml').code)
			end
		end
	end
end