Module: FlameChannelParser
- Defined in:
- lib/flame_channel_parser.rb
Defined Under Namespace
Modules: Segments Classes: Extractor, Interpolator, Parser2011, Parser2012
Constant Summary
- VERSION =
'2.0.0'
Class Method Summary (collapse)
-
+ (Object) parse(io)
Parse a Flame setup into an array of ChannelBlock objects.
Class Method Details
+ (Object) parse(io)
Parse a Flame setup into an array of ChannelBlock objects
7 8 9 10 |
# File 'lib/flame_channel_parser.rb', line 7 def self.parse(io) parser_class = detect_parser_class_from(io) parser_class.new.parse(io) end |