class Akabei::System::CommandFailed

Attributes

args[R]
env[R]
opts[R]

Public Class Methods

new(env, args, opts) click to toggle source
Calls superclass method
# File lib/akabei/system.rb, line 7
def initialize(env, args, opts)
  super("command failed: #{args.join(' ')}")
  @env = env
  @args = args
  @opts = opts
end