Class: Opal::Util::Command

Inherits:
Object
  • Object
show all
Defined in:
opal/lib/opal/util.rb

Direct Known Subclasses

DigestSourceCommand

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(command, options, message = nil) ⇒ Command

Returns a new instance of Command



26
27
28
29
# File 'opal/lib/opal/util.rb', line 26

def initialize(command, options, message = nil)
  @command, @options, @message = command, options, message
  return unless command_installed? command, message
end

Instance Attribute Details

#commandObject (readonly)

Returns the value of attribute command



30
31
32
# File 'opal/lib/opal/util.rb', line 30

def command
  @command
end

#messageObject (readonly)

Returns the value of attribute message



30
31
32
# File 'opal/lib/opal/util.rb', line 30

def message
  @message
end

#optionsObject (readonly)

Returns the value of attribute options



30
31
32
# File 'opal/lib/opal/util.rb', line 30

def options
  @options
end