module OzonParser

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/ozon_parser.rb, line 24
def self.config
@config ||= OzonParser::Config.new
end
config_reset() click to toggle source
# File lib/ozon_parser.rb, line 28
def self.config_reset
@config = OzonParser::Config.new
end
configure() { |config| ... } click to toggle source
# File lib/ozon_parser.rb, line 19
def self.configure
@config = OzonParser::Config.new
yield @config
end