class Docks::OpenStruct

Public Instance Methods

as_json(options = nil) click to toggle source
# File lib/docks/ostruct.rb, line 9
def as_json(options = nil)
  @table.as_json(options)
end
each(&block) click to toggle source
# File lib/docks/ostruct.rb, line 13
def each(&block)
  @table.each(&block)
end
to_json(options = nil) click to toggle source
# File lib/docks/ostruct.rb, line 5
def to_json(options = nil)
  @table.to_json(options)
end