Method: Plist::Listener#initialize

Defined in:
lib/plist/parser.rb

#initialize(options = {}) ⇒ Listener

Returns a new instance of Listener.



47
48
49
50
51
# File 'lib/plist/parser.rb', line 47

def initialize(options={})
  @result = nil
  @open   = []
  @options = { :marshal => true }.merge(options).freeze
end