class ResponseMate::Commands::Base

The command all other commands inherit from to DRY common functionality

Attributes

args[RW]
options[RW]

Public Class Methods

new(args, options) click to toggle source
# File lib/response_mate/commands/base.rb, line 5
def initialize(args, options)
  @args = args
  @options = options.dup.symbolize_keys
end