# File lib/fog/core/model.rb, line 13 def initialize(new_attributes = {}) # TODO Remove compatibility with old connection option attribs = new_attributes.clone @service = attribs.delete(:service) if @service.nil? && attribs[:connection] Fog::Logger.deprecation("Passing :connection option is deprecated, use :service instead [light_black](#{caller.first})[/]") @service = attribs[:connection] end merge_attributes(attribs) end
# File lib/fog/core/model.rb, line 24 def inspect Thread.current[:formatador] ||= Formatador.new data = "#{Thread.current[:formatador].indentation}<#{self.class.name}" Thread.current[:formatador].indent do unless self.class.attributes.empty? data << "\n#{Thread.current[:formatador].indentation}" data << self.class.attributes.map {|attribute| "#{attribute}=#{send(attribute).inspect}"}.join(",\n#{Thread.current[:formatador].indentation}") end end data << "\n#{Thread.current[:formatador].indentation}>" data end
# File lib/fog/core/model.rb, line 80 def method_missing(method_name, *args) if self.class.aliases.include?(method_name) send(self.class.aliases[method_name]) else super end end
# File lib/fog/core/model.rb, line 37 def reload requires :identity return unless data = begin collection.get(identity) rescue Excon::Errors::SocketError nil end new_attributes = data.attributes merge_attributes(new_attributes) self end
# File lib/fog/core/model.rb, line 88 def respond_to?(method_name, include_private = false) super || self.class.aliases.include?(method_name) end
# File lib/fog/core/model.rb, line 55 def symbolize_keys(hash) return nil if hash.nil? hash.inject({}) do |options, (key, value)| options[(key.to_sym rescue key) || key] = value options end end
# File lib/fog/core/model.rb, line 51 def to_json(options = {}) Fog::JSON.encode(attributes) end
# File lib/fog/core/model.rb, line 63 def wait_for(timeout=Fog.timeout, interval=1, &block) reload_has_succeeded = false duration = Fog.wait_for(timeout, interval) do # Note that duration = false if it times out if reload reload_has_succeeded = true instance_eval(&block) else false end end if reload_has_succeeded return duration # false if timeout; otherwise {:duration => elapsed time } else raise Fog::Errors::Error.new("Reload failed, #{self.class} #{self.identity} not present.") end end