Class: Fog::Attributes::Array

Inherits:
Default
  • Object
show all
Defined in:
lib/fog/core/attributes/array.rb

Overview

Fog Array Attribute

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

Instance Attribute Summary

Attributes inherited from Default

#aliases, #as, #default, #model, #name, #squash

Instance Method Summary collapse

Methods inherited from Default

#create_aliases, #create_mask, #initialize, #set_defaults

Constructor Details

This class inherits a constructor from Fog::Attributes::Default

Instance Method Details

#create_getterObject



16
17
18
19
20
21
22
# File 'lib/fog/core/attributes/array.rb', line 16

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

#create_setterObject



8
9
10
11
12
13
14
# File 'lib/fog/core/attributes/array.rb', line 8

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