module UniParser

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/uni_parser.rb, line 22
def self.config
  @config ||= UniParser::Config.new
end
config_reset() click to toggle source
# File lib/uni_parser.rb, line 26
def self.config_reset
  @config = UniParser::Config.new
end
configure() { |config| ... } click to toggle source
# File lib/uni_parser.rb, line 17
def self.configure
  @config = UniParser::Config.new
  yield @config
end