45
46
47
48
49
50
51
52
|
# File 'lib/sevgi/external/cli.rb', line 45
def call(argv)
return puts(help) if (options = Options.parse(argv)).help
return puts(Sevgi::VERSION) if options.version
run(file = argv.shift, options)
rescue Exception => e die(e, file, options)
end
|