mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
.. move the fluff that has collected into the src directory to somewhere more appropriate.
5 lines
99 B
Ruby
5 lines
99 B
Ruby
#!/usr/bin/env ruby
|
|
require 'rexml/document'
|
|
xml = REXML::Document.new(STDIN)
|
|
xml.write(STDOUT, 2)
|