module Onering module CLI module Fact def self.configure(global={}) Onering::Reporter.setup() @opts = ::Trollop::options do banner <<-EOS Return the value of an internal fact. Usage: onering [global] fact [name] EOS end end def self.run(args) return Onering::Util.fact(args[0]) end end end end