4
5
6
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/onering/cli/fact.rb', line 4
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
|