module StructuredReader

Constants

DeclarationError
Error
VERSION
WrongTypeError

Public Class Methods

json(*args, &blk) click to toggle source
# File lib/structured_reader.rb, line 12
def self.json(*args, &blk)
  JSONReader.new(*args, &blk)
end
reader_set(&blk) click to toggle source
# File lib/structured_reader.rb, line 16
def self.reader_set(&blk)
  JSONReader::ReaderSet.new.tap(&blk)
end