class Skunk::Cli::Command::Base
Base
class for `Skunk` commands. It knows how to build a command with options. It always uses a [Skunk::Command::StatusReporter] as its reporter object.
Public Class Methods
new(options)
click to toggle source
# File lib/skunk/cli/commands/base.rb, line 13 def initialize(options) @options = options @status_reporter = Skunk::Command::StatusReporter.new(@options) end