module BELParser::Parsers::Common::CommentLine
Constants
- MAX_LENGTH
Public Class Methods
parse(content) { |obj| ... }
click to toggle source
# File lib/bel_parser/parsers/common/comment_line.rb, line 22 def parse(content) return nil unless content Parser.new(content).each do |obj| yield obj end end