module Map::Tube

Constants

VERSION

Public Class Methods

new(city_name) click to toggle source
# File lib/map/tube.rb, line 15
def self.new(city_name)
  MapLoader.new(city_name)
end
new_from_xml(city_name, xml_file_path) click to toggle source
# File lib/map/tube.rb, line 19
def self.new_from_xml(city_name, xml_file_path)
  MapLoader.new(city_name, xml_file_path)
end