Class: ProconBypassMan::ButtonsSettingConfiguration::ParamNormalizer::DisableMacroIfPressed
- Inherits:
-
Object
- Object
- ProconBypassMan::ButtonsSettingConfiguration::ParamNormalizer::DisableMacroIfPressed
- Defined in:
- lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/disable_macro_if_pressed.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(value) ⇒ DisableMacroIfPressed
constructor
A new instance of DisableMacroIfPressed.
- #to_value! ⇒ Object
Constructor Details
#initialize(value) ⇒ DisableMacroIfPressed
Returns a new instance of DisableMacroIfPressed.
7 8 9 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/disable_macro_if_pressed.rb', line 7 def initialize(value) @value = value end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
5 6 7 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/disable_macro_if_pressed.rb', line 5 def value @value end |
Instance Method Details
#to_value! ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/procon_bypass_man/buttons_setting_configuration/param_normalizer/disable_macro_if_pressed.rb', line 11 def to_value! case value when FalseClass, Integer, TrueClass raise UnSupportValueError when Symbol, String return [value.to_sym] when Array return value.map(&:to_sym).uniq when NilClass # 常に対象のmacroをdisableにする return [true] else raise UnexpectedValueError end end |