Sha256: 5e39bc69db11e058ada64d5b69e4ed4336acb7b5acd91286e5bd1e380c2fd6e1

Contents?: true

Size: 589 Bytes

Versions: 49

Compression:

Stored size: 589 Bytes

Contents

module Fog
  module Attributes
    # = Fog Array Attribute
    #
    # This class handles Array attributes from the providers,
    # converting values to Array objects
    class Array < Default
      def create_setter
        model.class_eval <<-EOS, __FILE__, __LINE__
          def #{name}=(new_#{name})
            attributes[:#{name}] = Array(new_#{name})
          end
        EOS
      end

      def create_getter
        model.class_eval <<-EOS, __FILE__, __LINE__
          def #{name}
            Array(attributes[:#{name}])
          end
        EOS
      end
    end
  end
end

Version data entries

49 entries across 46 versions & 3 rubygems

Version Path
fog-core-2.6.0 lib/fog/core/attributes/array.rb
fog-core-2.5.0 lib/fog/core/attributes/array.rb
fog-core-2.4.0 lib/fog/core/attributes/array.rb
fog-core-2.3.0 lib/fog/core/attributes/array.rb
fog-core-2.2.4 lib/fog/core/attributes/array.rb
fog-core-2.2.3 lib/fog/core/attributes/array.rb
fog-core-2.2.2 lib/fog/core/attributes/array.rb
fog-core-2.2.1 lib/fog/core/attributes/array.rb
fog-core-2.2.0 lib/fog/core/attributes/array.rb
fog-core-2.1.2 lib/fog/core/attributes/array.rb
fog-core-2.1.1 lib/fog/core/attributes/array.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-core-1.45.0/lib/fog/core/attributes/array.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-core-1.45.0/lib/fog/core/attributes/array.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-core-2.1.0/lib/fog/core/attributes/array.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-core-1.45.0/lib/fog/core/attributes/array.rb
fog-core-2.1.0 lib/fog/core/attributes/array.rb
fog-core-2.0.0 lib/fog/core/attributes/array.rb
fog-core-1.45.0 lib/fog/core/attributes/array.rb
fog-core-1.44.3 lib/fog/core/attributes/array.rb
fog-core-1.44.2 lib/fog/core/attributes/array.rb