module Trupanion module API class Breeds def initialize(client) @client = client end def all client.get("/v1/breeds").body end private attr_reader :client end end end