Module: Fog::Attributes::InstanceMethods
- Included in:
- Collection, Model
- Defined in:
- lib/fog/attributes.rb
Instance Method Summary collapse
- #_dump ⇒ Object
- #attributes ⇒ Object
- #identity ⇒ Object
- #identity=(new_identity) ⇒ Object
- #merge_attributes(new_attributes = {}) ⇒ Object
- #new_record? ⇒ Boolean
- #requires(*args) ⇒ Object
Instance Method Details
#_dump ⇒ Object
116 117 118 |
# File 'lib/fog/attributes.rb', line 116 def _dump Marshal.dump(attributes) end |
#attributes ⇒ Object
120 121 122 123 124 125 126 |
# File 'lib/fog/attributes.rb', line 120 def attributes attributes = {} for attribute in self.class.attributes attributes[attribute] = send("#{attribute}") end attributes end |
#identity ⇒ Object
128 129 130 |
# File 'lib/fog/attributes.rb', line 128 def identity send(self.class.instance_variable_get('@identity')) end |
#identity=(new_identity) ⇒ Object
132 133 134 |
# File 'lib/fog/attributes.rb', line 132 def identity=(new_identity) send("#{self.class.instance_variable_get('@identity')}=", new_identity) end |
#merge_attributes(new_attributes = {}) ⇒ Object
136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/fog/attributes.rb', line 136 def merge_attributes(new_attributes = {}) for key, value in new_attributes unless self.class.ignored_attributes.include?(key) if aliased_key = self.class.aliases[key] send("#{aliased_key}=", value) else send("#{key}=", value) end end end self end |
#new_record? ⇒ Boolean
149 150 151 |
# File 'lib/fog/attributes.rb', line 149 def new_record? !identity end |
#requires(*args) ⇒ Object
153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/fog/attributes.rb', line 153 def requires(*args) missing = [] for arg in [:connection] | args missing << arg unless send("#{arg}") end unless missing.empty? if missing.length == 1 raise(ArgumentError, "#{missing.first} is required for this operation") else raise(ArgumentError, "#{missing[0...-1].join(", ")} and #{missing[-1]} are required for this operation") end end end |