Module: SettingsAccessors
- Included in:
- Defaults, Password, Preferences
- Defined in:
- lib/oro/helpers.rb
Overview
Mixed in to the singleton Defaults and Preference classes, and the Password class
Instance Method Summary collapse
- #actions ⇒ Object
- #actions=(val) ⇒ Object
- #config ⇒ Object
- #config=(val) ⇒ Object
- #plan ⇒ Object
- #plan=(val) ⇒ Object
Instance Method Details
#actions ⇒ Object
33 34 35 |
# File 'lib/oro/helpers.rb', line 33 def actions settings.actions end |
#actions=(val) ⇒ Object
37 38 39 |
# File 'lib/oro/helpers.rb', line 37 def actions=(val) @settings.actions = val end |
#config ⇒ Object
25 26 27 |
# File 'lib/oro/helpers.rb', line 25 def config settings.config end |
#config=(val) ⇒ Object
29 30 31 |
# File 'lib/oro/helpers.rb', line 29 def config=(val) @settings.config = val end |
#plan ⇒ Object
17 18 19 |
# File 'lib/oro/helpers.rb', line 17 def plan settings.plan end |
#plan=(val) ⇒ Object
21 22 23 |
# File 'lib/oro/helpers.rb', line 21 def plan=(val) @settings.plan = val end |