Module: BELParser::Parsers::Common::String
- Defined in:
- lib/bel_parser/parsers/common/string.rb
Defined Under Namespace
Classes: Parser
Constant Summary collapse
- MAX_LENGTH =
128K
1024 * 128
Class Method Summary collapse
Class Method Details
.parse(content) ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/bel_parser/parsers/common/string.rb', line 24 def parse(content) return nil unless content Parser.new(content).each do |obj| yield obj end end |