Class: Ron::Session
Instance Attribute Summary collapse
-
#objects_in_progress ⇒ Object
readonly
@output=[] #array of strings of data to be output.
-
#objects_seen ⇒ Object
readonly
@output=[] #array of strings of data to be output.
Instance Method Summary collapse
-
#initialize ⇒ Session
constructor
A new instance of Session.
Constructor Details
#initialize ⇒ Session
Returns a new instance of Session.
23 24 25 26 27 |
# File 'lib/ron.rb', line 23 def initialize @objects_seen={} #hash of object id to reference to string in output @objects_in_progress=[] #@output=[] #array of strings of data to be output end |
Instance Attribute Details
#objects_in_progress ⇒ Object (readonly)
@output=[] #array of strings of data to be output
28 29 30 |
# File 'lib/ron.rb', line 28 def objects_in_progress @objects_in_progress end |
#objects_seen ⇒ Object (readonly)
@output=[] #array of strings of data to be output
28 29 30 |
# File 'lib/ron.rb', line 28 def objects_seen @objects_seen end |