forked from wikiti/deepl-rb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeepl-rb.gemspec
132 lines (127 loc) · 5.24 KB
/
deepl-rb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Generated by juwelier
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: deepl-rb 3.2.0 ruby lib
Gem::Specification.new do |s|
s.name = "deepl-rb".freeze
s.version = "3.2.0".freeze
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.metadata = { "bug_tracker_uri" => "https://github.com/DeepLcom/deepl-rb/issues", "changelog_uri" => "https://github.com/DeepLcom/deepl-rb/blob/main/CHANGELOG.md", "documentation_uri" => "https://github.com/DeepLcom/deepl-rb/blob/main/README.md", "homepage_uri" => "https://github.com/DeepLcom/deepl-rb" } if s.respond_to? :metadata=
s.require_paths = ["lib".freeze]
s.authors = ["DeepL SE".freeze]
s.date = "2025-01-14"
s.description = "Official Ruby library for the DeepL language translation API (v2). For more information, check this: https://www.deepl.com/docs/api-reference.html".freeze
s.email = "[email protected]".freeze
s.extra_rdoc_files = [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"license_checker.sh"
]
s.files = [
".circleci/config.yml",
".github/workflows/add_issues_to_kanban.yml",
".gitlab-ci.yml",
".rubocop.yml",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"Gemfile",
"LICENSE.md",
"README.md",
"Rakefile",
"SECURITY.md",
"VERSION",
"deepl-rb.gemspec",
"lib/deepl.rb",
"lib/deepl/api.rb",
"lib/deepl/configuration.rb",
"lib/deepl/constants/base_constant.rb",
"lib/deepl/constants/formality.rb",
"lib/deepl/constants/model_type.rb",
"lib/deepl/constants/split_sentences.rb",
"lib/deepl/constants/tag_handling.rb",
"lib/deepl/constants/tone.rb",
"lib/deepl/constants/writing_style.rb",
"lib/deepl/document_api.rb",
"lib/deepl/exceptions/authorization_failed.rb",
"lib/deepl/exceptions/bad_request.rb",
"lib/deepl/exceptions/document_translation_error.rb",
"lib/deepl/exceptions/error.rb",
"lib/deepl/exceptions/limit_exceeded.rb",
"lib/deepl/exceptions/not_found.rb",
"lib/deepl/exceptions/not_supported.rb",
"lib/deepl/exceptions/quota_exceeded.rb",
"lib/deepl/exceptions/request_entity_too_large.rb",
"lib/deepl/exceptions/request_error.rb",
"lib/deepl/exceptions/server_error.rb",
"lib/deepl/glossary_api.rb",
"lib/deepl/requests/base.rb",
"lib/deepl/requests/document/download.rb",
"lib/deepl/requests/document/get_status.rb",
"lib/deepl/requests/document/upload.rb",
"lib/deepl/requests/glossary/create.rb",
"lib/deepl/requests/glossary/destroy.rb",
"lib/deepl/requests/glossary/entries.rb",
"lib/deepl/requests/glossary/find.rb",
"lib/deepl/requests/glossary/language_pairs.rb",
"lib/deepl/requests/glossary/list.rb",
"lib/deepl/requests/languages.rb",
"lib/deepl/requests/rephrase.rb",
"lib/deepl/requests/translate.rb",
"lib/deepl/requests/usage.rb",
"lib/deepl/resources/base.rb",
"lib/deepl/resources/document_handle.rb",
"lib/deepl/resources/document_translation_status.rb",
"lib/deepl/resources/glossary.rb",
"lib/deepl/resources/language.rb",
"lib/deepl/resources/language_pair.rb",
"lib/deepl/resources/text.rb",
"lib/deepl/resources/usage.rb",
"lib/deepl/utils/backoff_timer.rb",
"lib/deepl/utils/exception_builder.rb",
"lib/http_client_options.rb",
"license_checker.sh",
"spec/api/api_spec.rb",
"spec/api/configuration_spec.rb",
"spec/api/deepl_spec.rb",
"spec/constants/constants_spec.rb",
"spec/fixtures/vcr_cassettes/deepl_document.yml",
"spec/fixtures/vcr_cassettes/deepl_document_download.yml",
"spec/fixtures/vcr_cassettes/deepl_glossaries.yml",
"spec/fixtures/vcr_cassettes/deepl_languages.yml",
"spec/fixtures/vcr_cassettes/deepl_translate.yml",
"spec/fixtures/vcr_cassettes/deepl_usage.yml",
"spec/fixtures/vcr_cassettes/glossaries.yml",
"spec/fixtures/vcr_cassettes/languages.yml",
"spec/fixtures/vcr_cassettes/rephrase_texts.yml",
"spec/fixtures/vcr_cassettes/translate_texts.yml",
"spec/fixtures/vcr_cassettes/usage.yml",
"spec/integration_tests/document_api_spec.rb",
"spec/integration_tests/integration_test_utils.rb",
"spec/requests/glossary/create_spec.rb",
"spec/requests/glossary/destroy_spec.rb",
"spec/requests/glossary/entries_spec.rb",
"spec/requests/glossary/find_spec.rb",
"spec/requests/glossary/language_pairs_spec.rb",
"spec/requests/glossary/list_spec.rb",
"spec/requests/languages_spec.rb",
"spec/requests/rephrase_spec.rb",
"spec/requests/translate_spec.rb",
"spec/requests/usage_spec.rb",
"spec/resources/glossary_spec.rb",
"spec/resources/language_pair_spec.rb",
"spec/resources/language_spec.rb",
"spec/resources/text_spec.rb",
"spec/resources/usage_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = "https://github.com/DeepLcom/deepl-rb".freeze
s.licenses = ["MIT".freeze]
s.rubygems_version = "3.5.3".freeze
s.summary = "Official Ruby library for the DeepL language translation API.".freeze
s.specification_version = 4
s.add_development_dependency(%q<juwelier>.freeze, [">= 0".freeze])
s.add_development_dependency(%q<byebug>.freeze, [">= 0".freeze])
end