module DynamicParser::MicroParser::Stateless::ClassMethods
Public Instance Methods
detect(txt)
click to toggle source
# File lib/dynamic_parser/micro_parsers/stateless.rb, line 3 def detect(txt) true end
parse(txt)
click to toggle source
# File lib/dynamic_parser/micro_parsers/stateless.rb, line 7 def parse(txt) raise 'This method must parse the given content - statelessly - and return the parsing result, if any.' end