Sha256: 8baaae0fe8ba8df7c503c5328969e5b06c0a0325f553d187e48bddd964b9741e

Contents?: true

Size: 772 Bytes

Versions: 4

Compression:

Stored size: 772 Bytes

Contents

# Copyright 2022 Daniel Herzog
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE.md file.
# frozen_string_literal: true

module DeepL
  module Requests
    module Glossary
      class Entries < Base
        attr_reader :id

        def initialize(api, id, options = {})
          super(api, options)
          @id = id
        end

        def request
          build_entries(*execute_request_with_retries(get_request))
        end

        def to_s
          "GET #{uri.request_uri}"
        end

        private

        def build_entries(_, response)
          response.body.split("\n").map { |entry| entry.split("\t") }
        end

        def path
          "glossaries/#{id}/entries"
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
deepl-rb-3.1.0 lib/deepl/requests/glossary/entries.rb
deepl-rb-3.0.2 lib/deepl/requests/glossary/entries.rb
deepl-rb-3.0.1 lib/deepl/requests/glossary/entries.rb
deepl-rb-3.0.0 lib/deepl/requests/glossary/entries.rb