Sha256: 09f458a82f5aed822aa68d2323d57f0ae30b824cbb02ea6101c3b86993cccd88
Contents?: true
Size: 706 Bytes
Versions: 38
Compression:
Stored size: 706 Bytes
Contents
%%{ machine content_location; include rb_actions "rb_actions.rl"; include common "../../common.rl"; getkey data_unpacked[p]; main := content_location; }%% module Mail module Parsers module Ragel module ContentLocationMachine %%write data; def self.parse(data) p = 0 eof = data.length stack = [] actions = [] data_unpacked = data.bytes.to_a %%write init; %%write exec; if p == eof && cs >= %%{ write first_final; }%% return actions, nil else return [], "Only able to parse up to #{data[0..p]}" end end end end end end
Version data entries
38 entries across 35 versions & 11 rubygems