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.
456 457 458 459 |
# File 'lib/rst.rb', line 456 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.
447 448 449 |
# File 'lib/rst.rb', line 447 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.
448 449 450 |
# File 'lib/rst.rb', line 448 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.
450 451 452 |
# File 'lib/rst.rb', line 450 def id 'defaults' end |