module Enviera
require ‘enviera/subcommands/unknown_command’
Constants
- DESCRIPTION
- VERSION
Public Class Methods
subcommand()
click to toggle source
# File lib/enviera.rb, line 12 def self.subcommand @@subcommand end
subcommand=(command)
click to toggle source
# File lib/enviera.rb, line 8 def self.subcommand= command @@subcommand = command end
subcommands()
click to toggle source
# File lib/enviera.rb, line 29 def self.subcommands @@subcommands end
subcommands=(commands)
click to toggle source
# File lib/enviera.rb, line 25 def self.subcommands= commands @@subcommands = commands end
verbosity_level()
click to toggle source
# File lib/enviera.rb, line 20 def self.verbosity_level @@debug_level ||= 1 @@debug_level end
verbosity_level=(new_verbosity_level)
click to toggle source
# File lib/enviera.rb, line 16 def self.verbosity_level= new_verbosity_level @@debug_level = new_verbosity_level end