class Tracksperanto::Import::MatchMoverRZML

Public Class Methods

autodetects_size?() click to toggle source
# File lib/import/match_mover_rzml.rb, line 5
def self.autodetects_size?
  true
end
distinct_file_ext() click to toggle source
# File lib/import/match_mover_rzml.rb, line 13
def self.distinct_file_ext
  ".rzml"
end
human_name() click to toggle source
# File lib/import/match_mover_rzml.rb, line 9
def self.human_name
  "MatchMover RZML .rzml file"
end

Public Instance Methods

each() { |e| ... } click to toggle source
# File lib/import/match_mover_rzml.rb, line 79
def each
  cb = lambda{|e| yield(e) }
  REXML::Document.parse_stream(@io, Listener.new(self, cb))
end