Sha256: 18c68c2bdc1d37c9a3b82722dd8a90e2716b0478214be8fdec5e9001d7093fd1
Contents?: true
Size: 275 Bytes
Versions: 2
Compression:
Stored size: 275 Bytes
Contents
module Veeqo class Company < Base def find Veeqo::Request.new(:get, end_point).parse end def update(attributes) Veeqo::Request.new(:put, end_point, attributes).parse end private def end_point "current_company" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
veeqo-0.1.1 | lib/veeqo/company.rb |
veeqo-0.1.0 | lib/veeqo/company.rb |