class Fog::Attributes::Boolean
Fog Boolean Attribute¶ ↑
This class handles Boolean attributes from the providers, converting values to Boolean objects
Public Instance Methods
create_setter()
click to toggle source
# File lib/fog/core/attributes/boolean.rb, line 8 def create_setter model.class_eval <<-EOS, __FILE__, __LINE__ def #{name}=(new_#{name}) attributes[:#{name}] = case new_#{name} when true,'true' true when false,'false' false end end EOS end