class JSONFactory::State
Attributes
count[RW]
io[RW]
type[RW]
Public Class Methods
new(io, type, count = 0)
click to toggle source
# File lib/json_factory/state.rb, line 7 def initialize(io, type, count = 0) @io = io @type = type @count = count end