Sha256: 90f753d2034548ad62651630339693bb5e00ed63f803004b82b20a84da23e224

Contents?: true

Size: 193 Bytes

Versions: 1

Compression:

Stored size: 193 Bytes

Contents

module Loquor
  class ApiCall::Show < ApiCall

    def initialize(path, id)
      super(path)
      @id = id
    end

    def execute
      Loquor.get("#{build_path}/#{@id}")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
loquor-0.0.1 lib/loquor/api_calls/show.rb