class Fog::Attributes::Timestamp

Public Instance Methods

create_setter() click to toggle source
# File lib/fog/core/attributes/timestamp.rb, line 4
      def create_setter
        model.class_eval "            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
", __FILE__, __LINE__
      end