Sha256: 123d682a18630ca5695563bfe551dfd026403cf1dc864f05f6f2c368bfadac21

Contents?: true

Size: 551 Bytes

Versions: 49

Compression:

Stored size: 551 Bytes

Contents

module Fog
  module Attributes
    # = Fog Boolean Attribute
    #
    # This class handles Boolean attributes from the providers,
    # converting values to Boolean objects
    class Boolean < Default
      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
    end
  end
end

Version data entries

49 entries across 46 versions & 3 rubygems

Version Path
fog-core-1.44.1 lib/fog/core/attributes/boolean.rb
fog-core-1.44.0 lib/fog/core/attributes/boolean.rb
fog-core-1.43.0 lib/fog/core/attributes/boolean.rb
fog-core-1.42.0 lib/fog/core/attributes/boolean.rb
fog-core-1.41.0 lib/fog/core/attributes/boolean.rb
fog-core-1.40.1 lib/fog/core/attributes/boolean.rb
fog-core-1.40.0 lib/fog/core/attributes/boolean.rb
fog-core-1.39.0 lib/fog/core/attributes/boolean.rb
fog-core-1.38.0 lib/fog/core/attributes/boolean.rb
fog-core-1.37.0 lib/fog/core/attributes/boolean.rb
fog-core-1.36.0 lib/fog/core/attributes/boolean.rb
fog-core-1.35.0 lib/fog/core/attributes/boolean.rb
fog-core-1.34.0 lib/fog/core/attributes/boolean.rb
fog-core-1.33.0 lib/fog/core/attributes/boolean.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-core-1.32.1/lib/fog/core/attributes/boolean.rb
fog-core-1.32.1 lib/fog/core/attributes/boolean.rb
fog-core-1.32.0 lib/fog/core/attributes/boolean.rb
fog-core-1.31.1 lib/fog/core/attributes/boolean.rb
fog-core-1.31.0 lib/fog/core/attributes/boolean.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-core-1.30.0/lib/fog/core/attributes/boolean.rb