Module: Fog::Attributes::InstanceMethods
- Included in:
- Collection, Model
- Defined in:
- lib/fog/core/attributes.rb
Instance Method Summary collapse
- #_dump(level) ⇒ Object
- #attributes ⇒ Object
- #dup ⇒ Object
- #identity ⇒ Object
- #identity=(new_identity) ⇒ Object
- #merge_attributes(new_attributes = {}) ⇒ Object
- #new_record? ⇒ Boolean
-
#requires(*args) ⇒ Object
check that the attributes specified in args exist and is not nil.
Instance Method Details
#_dump(level) ⇒ Object
116 117 118 |
# File 'lib/fog/core/attributes.rb', line 116 def _dump(level) Marshal.dump(attributes) end |
#attributes ⇒ Object
120 121 122 |
# File 'lib/fog/core/attributes.rb', line 120 def attributes @attributes ||= {} end |
#dup ⇒ Object
124 125 126 127 128 |
# File 'lib/fog/core/attributes.rb', line 124 def dup copy = super copy.dup_attributes! copy end |
#identity ⇒ Object
130 131 132 |
# File 'lib/fog/core/attributes.rb', line 130 def identity send(self.class.instance_variable_get('@identity')) end |
#identity=(new_identity) ⇒ Object
134 135 136 |
# File 'lib/fog/core/attributes.rb', line 134 def identity=(new_identity) send("#{self.class.instance_variable_get('@identity')}=", new_identity) end |
#merge_attributes(new_attributes = {}) ⇒ Object
138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/fog/core/attributes.rb', line 138 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) elsif (public_methods | private_methods).detect {|method| ["#{key}=", :"#{key}="].include?(method)} send("#{key}=", value) else attributes[key] = value end end end self end |
#new_record? ⇒ Boolean
153 154 155 |
# File 'lib/fog/core/attributes.rb', line 153 def new_record? !identity end |
#requires(*args) ⇒ Object
check that the attributes specified in args exist and is not nil
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/fog/core/attributes.rb', line 158 def requires(*args) missing = [] for arg in [:connection] | args unless send("#{arg}") || attributes.has_key?(arg) missing << arg end 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 |