Sha256: 494e89553d1c40d4dc93fa00b54d7ce6e7ca2ea11dd11c7c547990c5d0cf5c95

Contents?: true

Size: 634 Bytes

Versions: 49

Compression:

Stored size: 634 Bytes

Contents

module Fog
  module Attributes
    # = Fog Timestamp Attribute
    #
    # This class handles Timestamp attributes from the providers,
    # converting Integer and String values as a real Timestamp objects
    class Timestamp < Default
      def create_setter
        model.class_eval <<-EOS, __FILE__, __LINE__
            def #{name}=(new_#{name})
              if new_#{name}.respond_to?(:to_i)
                attributes[:#{name}] = Fog::Time.at(new_#{name}.to_i)
              else
                attributes[:#{name}] = Fog::Time.parse(new_#{name}.to_s)
              end
            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/timestamp.rb
fog-core-2.5.0 lib/fog/core/attributes/timestamp.rb
fog-core-2.4.0 lib/fog/core/attributes/timestamp.rb
fog-core-2.3.0 lib/fog/core/attributes/timestamp.rb
fog-core-2.2.4 lib/fog/core/attributes/timestamp.rb
fog-core-2.2.3 lib/fog/core/attributes/timestamp.rb
fog-core-2.2.2 lib/fog/core/attributes/timestamp.rb
fog-core-2.2.1 lib/fog/core/attributes/timestamp.rb
fog-core-2.2.0 lib/fog/core/attributes/timestamp.rb
fog-core-2.1.2 lib/fog/core/attributes/timestamp.rb
fog-core-2.1.1 lib/fog/core/attributes/timestamp.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-core-1.45.0/lib/fog/core/attributes/timestamp.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-core-1.45.0/lib/fog/core/attributes/timestamp.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-core-2.1.0/lib/fog/core/attributes/timestamp.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-core-1.45.0/lib/fog/core/attributes/timestamp.rb
fog-core-2.1.0 lib/fog/core/attributes/timestamp.rb
fog-core-2.0.0 lib/fog/core/attributes/timestamp.rb
fog-core-1.45.0 lib/fog/core/attributes/timestamp.rb
fog-core-1.44.3 lib/fog/core/attributes/timestamp.rb
fog-core-1.44.2 lib/fog/core/attributes/timestamp.rb