Module: Fog::Proxmox::Attributes

Defined in:
lib/fog/proxmox/attributes.rb

Overview

module Attributes mixins

Class Method Summary collapse

Class Method Details

.set_attr(attr_name, attributes, new_attributes) ⇒ Object



24
25
26
# File 'lib/fog/proxmox/attributes.rb', line 24

def self.set_attr(attr_name, attributes, new_attributes)
  attributes[attr_name.to_sym] = new_attributes[attr_name] unless new_attributes[attr_name].nil?
end

.set_attr_and_sym(attr_name, attributes, new_attributes) ⇒ Object



27
28
29
30
# File 'lib/fog/proxmox/attributes.rb', line 27

def self.set_attr_and_sym(attr_name, attributes, new_attributes)
  self.set_attr(attr_name, attributes, new_attributes)
  self.set_attr(attr_name.to_sym, attributes, new_attributes)
end