Class: Opal::Util::Command
- Inherits:
-
Object
- Object
- Opal::Util::Command
- Defined in:
- opal/lib/opal/util.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#command ⇒ Object
readonly
Returns the value of attribute command.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(command, options, message = nil) ⇒ Command
constructor
A new instance of Command.
Constructor Details
#initialize(command, options, message = nil) ⇒ Command
Returns a new instance of Command
27 28 29 30
# File 'opal/lib/opal/util.rb', line 27 def initialize(command, options, message = nil) @command, @options, @message = command, options, message return unless command_installed? command, message end
Instance Attribute Details
#command ⇒ Object (readonly)
Returns the value of attribute command
31 32 33
# File 'opal/lib/opal/util.rb', line 31 def command @command end
#message ⇒ Object (readonly)
Returns the value of attribute message
31 32 33
# File 'opal/lib/opal/util.rb', line 31 def message @message end
#options ⇒ Object (readonly)
Returns the value of attribute options
31 32 33
# File 'opal/lib/opal/util.rb', line 31 def options @options end