module GLI
Constants
- VERSION
Public Class Methods
included(klass)
click to toggle source
# File lib/gli.rb, line 27 def self.included(klass) warn "You should include GLI::App instead" end
run(*args)
click to toggle source
# File lib/gli.rb, line 31 def self.run(*args) warn "GLI.run no longer works for GLI-2, you must just call `run(ARGV)' instead" warn "either fix your app, or use the latest GLI in the 1.x family" 1 end