module SettingsAccessors

Mixed in to the singleton Defaults and Preference classes, and the Password class

Public Instance Methods

actions() click to toggle source
# File lib/oro/helpers.rb, line 33
def actions
  settings.actions
end
actions=(val) click to toggle source
# File lib/oro/helpers.rb, line 37
def actions=(val)
  @settings.actions = val
end
config() click to toggle source
# File lib/oro/helpers.rb, line 25
def config
  settings.config
end
config=(val) click to toggle source
# File lib/oro/helpers.rb, line 29
def config=(val)
  @settings.config = val
end
plan() click to toggle source
# File lib/oro/helpers.rb, line 17
def plan
  settings.plan
end
plan=(val) click to toggle source
# File lib/oro/helpers.rb, line 21
def plan=(val)
  @settings.plan = val
end