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

Public Instance Methods

share(_) click to toggle source
# File lib/skunk/cli/commands/base.rb, line 18
def share(_); end