module Altria

Provides command line interface for Altria.

Examples

# Takes ARGV and invokes a job.
Altria::Command.call(ARGV)

# Invokes "setup" command to set up your database.
Altria::Command.call(["setup"])

# Invokes "start" command to start the processes.
Altria::Command.call(["start"])

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/altria.rb, line 9
def configuration
  @configuration ||= Altria::Configuration.new
end