Class: RST::Defaults Private
- Inherits:
-
Object
- Object
- RST::Defaults
- Includes:
- Persistent::Persistentable
- Defined in:
- lib/rst.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Defaults Store
HELPER CLASSES collapse
- #command ⇒ Object readonly private
- #options ⇒ Object readonly private
Attributes included from Persistent::Persistentable
HELPER CLASSES collapse
- #id ⇒ Object private
-
#initialize(command, options) ⇒ Defaults
constructor
private
A new instance of Defaults.
Methods included from Persistent::Persistentable
Constructor Details
#initialize(command, options) ⇒ Defaults
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Defaults.
457 458 459 460 |
# File 'lib/rst.rb', line 457 def initialize(command,) @command = command @options = end |
Instance Attribute Details
#command ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
448 449 450 |
# File 'lib/rst.rb', line 448 def command @command end |
#options ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
449 450 451 |
# File 'lib/rst.rb', line 449 def @options end |
Instance Method Details
#id ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
451 452 453 |
# File 'lib/rst.rb', line 451 def id 'defaults' end |