Class: Opal::Util::Command
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
18 19 20 21 |
# File 'opal/lib/opal/util.rb', line 18 def initialize(command, , = nil) @command, @options, @message = command, , return unless command_installed? command, end |
Instance Attribute Details
#command ⇒ Object (readonly)
Returns the value of attribute command
22 23 24 |
# File 'opal/lib/opal/util.rb', line 22 def command @command end |
#message ⇒ Object (readonly)
Returns the value of attribute message
22 23 24 |
# File 'opal/lib/opal/util.rb', line 22 def @message end |
#options ⇒ Object (readonly)
Returns the value of attribute options
22 23 24 |
# File 'opal/lib/opal/util.rb', line 22 def @options end |