Class: Economic::SelfRepo

Inherits:
BaseRepo show all
Defined in:
lib/economic/self_repo.rb

Constant Summary

Constants inherited from BaseRepo

BaseRepo::URL

Class Method Summary collapse

Methods inherited from BaseRepo

all, destroy, endpoint_url, filter, find, save, send, send_request, updated_after

Class Method Details

.selfObject



6
7
8
9
10
# File 'lib/economic/self_repo.rb', line 6

def self
  response = send_request(method: :get, url: URI.escape(Economic::SelfRepo.endpoint_url))
  entry_hash = JSON.parse(response.body)
  model.new(entry_hash)
end