Class: Ron::Session

Inherits:
Object show all
Defined in:
lib/ron.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSession

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_progressObject (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_seenObject (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