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