Sha256: ea566a35a24bef6c4a2468d4e4cc72768aaf3237ed5e96ce8b2b37ac7139acab
Contents?: true
Size: 577 Bytes
Versions: 1
Compression:
Stored size: 577 Bytes
Contents
require 'oxford_dictionary/endpoints/endpoint' module OxfordDictionary module Endpoints class Translations < Endpoint ENDPOINT = 'translations'.freeze def translation(word:, source_language:, target_language:, params: {}) query_string = "#{ENDPOINT}/#{source_language}/#{target_language}/#{word}" uri = URI(query_string) unless params.empty? uri.query = URI.encode_www_form(params) end response = @request_client.get(uri: uri) deserialize.call(response.body) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
oxford_dictionary-1.3.0 | lib/oxford_dictionary/endpoints/translations.rb |