class Fog::Attributes::Integer

Fog Integer Attribute

This class handles Integer attributes from the providers, converting values to Integer objects

Public Instance Methods

create_setter() click to toggle source
# File lib/fog/core/attributes/integer.rb, line 8
      def create_setter
        model.class_eval <<-EOS, __FILE__, __LINE__
            def #{name}=(new_#{name})
              attributes[:#{name}] = new_#{name}.to_i
            end
        EOS
      end