Sha256: db53cfd5c575676c6416d70311c8a2676475cbc6c955f5caae992365c8da2cb0
Contents?: true
Size: 287 Bytes
Versions: 1
Compression:
Stored size: 287 Bytes
Contents
module LinkedIn class Response attr_reader :_response def initialize(response) @_response = response end def _status _response.status end def method_missing(method, *args, &block) _response.body.send method, *args, &block end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
linkedin2-0.0.18 | lib/linkedin/response.rb |