1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/collection.rb
2009-08-17 18:34:44 -07:00

51 lines
1,011 B
Ruby

module Fog
class Collection < Array
def initialize(attributes = {})
update_attributes(attributes)
end
def inspect
data = "#<#{self.class.name}"
for attribute in (self.instance_variables - ['@connection'])
data << " #{attribute}=#{send(attribute[1..-1].to_sym).inspect}"
end
data << " ["
for item in self
data << "#{item.inspect},"
end
data.chomp!
data << "]>"
end
def update_attributes(attributes = {})
for key, value in attributes
send(:"#{key}=", value)
end
self
end
private
def connection=(new_connection)
@connection = new_connection
end
def connection
@connection
end
def new_record?
!defined?(@new_record) || @new_record
end
def remap_attributes(attributes, mapping)
for key, value in mapping
if attributes.key?(key)
attributes[value] = attributes.delete(key)
end
end
end
end
end