Parent

Class/Module Index [+]

Quicksearch

Fog::Attributes::Array

Public Instance Methods

create_getter() click to toggle source
# File lib/fog/core/attributes/array.rb, line 12
def create_getter
  model.class_eval           def #{name}            Array(attributes[:#{name}])          end, __FILE__, __LINE__
end
create_setter() click to toggle source
# File lib/fog/core/attributes/array.rb, line 4
def create_setter
  model.class_eval           def #{name}=(new_#{name})            attributes[:#{name}] = Array(new_#{name})          end, __FILE__, __LINE__
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.