ruby-avm-library/lib/avm/cli.rb

19 lines
295 B
Ruby
Raw Permalink Normal View History

require 'thor'
require 'avm/image'
require 'pp'
module AVM
2011-03-23 18:10:02 +00:00
# The CLI interface
class CLI < ::Thor
default_task :convert
desc 'convert', "Convert a file from one format to another"
def convert
data = $stdin.read
pp AVM::Image.from_xml(data).to_h
end
end
end