Module: GpxRuby
- Defined in:
- lib/version.rb,
lib/gpx_ruby.rb,
lib/gpx_ruby/gpx/point.rb,
lib/gpx_ruby/gpx/track.rb,
lib/gpx_ruby/gpx/parser.rb,
lib/gpx_ruby/gpx/document.rb,
lib/gpx_ruby/gpx/parsers/track_parser.rb
Defined Under Namespace
Modules: Gpx
Constant Summary collapse
- VERSION =
'0.2.0'
Class Method Summary collapse
Class Method Details
.File(input) ⇒ Object
14 15 16 |
# File 'lib/gpx_ruby.rb', line 14 def File(input) Gpx::Parser.new(input).parse end |
.XML(xml_string) ⇒ Object
18 19 20 |
# File 'lib/gpx_ruby.rb', line 18 def XML(xml_string) Gpx::Parser.new(xml: xml_string).parse end |