Class: GH::LazyLoader
Overview
Public: …
Instance Attribute Summary
Attributes inherited from Wrapper
Instance Method Summary collapse
Methods inherited from Wrapper
[], #[], #frontend, #frontend=, #generate_response, #initialize, #inspect, #load, #prefixed, #reset, wraps
Constructor Details
This class inherits a constructor from GH::Wrapper
Instance Method Details
#modify_hash(hash, loaded = false) ⇒ Object
9 10 11 12 13 14 15 16 |
# File 'lib/gh/lazy_loader.rb', line 9 def modify_hash(hash, loaded = false) hash = super(hash) link = hash['_links']['self'] unless loaded or hash['_links'].nil? setup_lazy_loading(hash, link['href']) if link hash rescue Exception => error raise Error.new(error, hash) end |