kapellmeister 0.9.8 → 0.9.9.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/README.md +174 -42
- data/kapellmeister.gemspec +6 -8
- data/lib/kapellmeister/base.rb +1 -1
- data/lib/kapellmeister/dispatcher.rb +6 -6
- data/lib/kapellmeister/requests_extension.rb +5 -5
- data/lib/kapellmeister/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d59e28eecf6117e627cd0108f64e27db9331837d972d8ae9911041e7dd1c03f
|
4
|
+
data.tar.gz: 6717303f7fbce49b91927ab5021312f3fe2ea761a8dcd07883d290cd91839d87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3296052e14e0aaf0b0553930be4ad02e8ffa102a13968fde326c1bd358274940b4afbfe2abc28a3bfc5e4cb6a60fa723d7739a1d0a332e4e303514bff2c41c44
|
7
|
+
data.tar.gz: d2d0a331dc45c3e084f9c46c5fb36f75dd067d6ec140c2f00a5f7f0e9f6676bc15e5100d192e23242163e4b954fa53c92506b9e96b1ae6c2fe39fd61f1a73df0
|
data/Gemfile
CHANGED
@@ -6,9 +6,9 @@ gemspec
|
|
6
6
|
|
7
7
|
gem 'dry-schema'
|
8
8
|
gem 'faraday'
|
9
|
-
gem '
|
9
|
+
gem 'faraday-follow_redirects'
|
10
10
|
gem 'faraday-cookie_jar'
|
11
|
-
gem 'typhoeus'
|
11
|
+
gem 'faraday-typhoeus'
|
12
12
|
|
13
13
|
# debug
|
14
14
|
group :development do
|
@@ -23,6 +23,6 @@ group :development, :test do
|
|
23
23
|
gem 'rubocop', require: false
|
24
24
|
gem 'rubocop-performance'
|
25
25
|
gem 'rubocop-rspec'
|
26
|
-
gem 'rubycritic', require: false
|
26
|
+
gem 'rubycritic', '~> 4.9.1', require: false
|
27
27
|
gem 'ruby_gntp'
|
28
28
|
end
|
data/README.md
CHANGED
@@ -1,3 +1,132 @@
|
|
1
|
+
# Диспетчер HTTP-запросов
|
2
|
+
|
3
|
+
Этот шаблонизатор позволяет вам определять http-запросы к любым сторонним API с помощью упрощенного набора инструкций, включая анализатор маршрутов в формате yaml
|
4
|
+
## Использование
|
5
|
+
|
6
|
+
Добавьте kapellmeister в свой Gemfile:
|
7
|
+
На данный момент послденяя версия 0.9.8 (Проект находится в стадии тестирования работоспособности, beta-test)
|
8
|
+
```ruby
|
9
|
+
gem 'kapellmeister', '~> 0.9.8'
|
10
|
+
```
|
11
|
+
|
12
|
+
### Добавьте новую конфигурацию для стороннего API:
|
13
|
+
|
14
|
+
$ bin/rails g kapellmeister:add_service %<ThirdPartyName> %<options> --%<flags>
|
15
|
+
|
16
|
+
`ThirdPartyName` — Имя сервиса, может быть указан как КэмелКейсом (CamelCase) так и с нижним_подчёркиванием (under_scored)
|
17
|
+
|
18
|
+
`options` — Укажите ключи конфигурации, обычно это хост, ключ и версия
|
19
|
+
|
20
|
+
`flags` — Этот шаблонзатор пока что имеет один флаг.
|
21
|
+
Флаг `responder`, `false` — значение по-умолчанию.
|
22
|
+
Если вы установите для него значение `true`, то будет сгенерирован файл responder.rb используемый для анализа и парсинга ответа.
|
23
|
+
|
24
|
+
Все инструкции — это легковесные файлы в каталоге /lib вашего приложения.
|
25
|
+
Вот пример структуры:
|
26
|
+
|
27
|
+
``` Capfile
|
28
|
+
└── app
|
29
|
+
└── lib
|
30
|
+
└── third_party_service
|
31
|
+
├── client.rb
|
32
|
+
├── configuration.rb
|
33
|
+
├── responder.rb (опционально)
|
34
|
+
└── routes.yml
|
35
|
+
└── third_party_service.rb
|
36
|
+
└── initializers
|
37
|
+
└── third_party_service.rb
|
38
|
+
```
|
39
|
+
|
40
|
+
Если вы используете Rails, в вашем приложении есть папка `initializers`. Добавьте секретные ключи в файле-инициализаторе
|
41
|
+
|
42
|
+
initializers/third_party_service.rb
|
43
|
+
|
44
|
+
Основной файл вашей интеграции, миксин, включающий Kapellmeister::Base
|
45
|
+
|
46
|
+
app/lib/third_party_service.rb
|
47
|
+
|
48
|
+
Каталог, содержащий `routes scheme`, `client`, `configuration` и опциональный `responder`.
|
49
|
+
|
50
|
+
app/lib/third_party_service
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
`routes.yml` — Маршруты к стороннему API во вложенном формате.
|
55
|
+
|
56
|
+
``` yaml
|
57
|
+
foo: => Обёртка для метода
|
58
|
+
bar: => Наименование метода
|
59
|
+
scheme: => Описание схемы
|
60
|
+
method: POST => Тип запроса (* обязательный параметр!)
|
61
|
+
use_wrapper: true => Обёрнуть ли метод для обеспечения уникальности. По умолчанию true
|
62
|
+
path: buz => Настоящий путь (роут). Если параметра нет, то путь будет взят из наименования метода.
|
63
|
+
body: => Dry-scheme (из набора гемов DRY) для проверки параметров. Если параметра нет, то проверки не будет.
|
64
|
+
query_params: => Описание query-параметров. Если параметра нет, то подстановки параметров не будет.
|
65
|
+
mock: => Структура или путь к файлу mock для тестов. Если параметра нет, в среде разработки будет возвращён реальный ответ на запрос.
|
66
|
+
|
67
|
+
# Результат из примера выше:
|
68
|
+
# client = ThirdParty::Client.new
|
69
|
+
# client.foo_bar { a: 'b' }
|
70
|
+
# => POST https://third_party.com/foo/buz DATA: { a: 'b' }
|
71
|
+
```
|
72
|
+
#### Пояснение к параметрам:
|
73
|
+
|
74
|
+
`body` — Вы можете использовать dry-scheme (из набора гемов DRY) для проверки параметров запроса.
|
75
|
+
Если этот ключ не существует, проверка будет пропущена.
|
76
|
+
Пример:
|
77
|
+
|
78
|
+
```yaml
|
79
|
+
body: DrySchema
|
80
|
+
```
|
81
|
+
|
82
|
+
`query_params` — Если для запроса требуется query-параметры.
|
83
|
+
Работают как массивы, так и руби-хэши.
|
84
|
+
Если этот ключ не существует, то подстановки параметров и их проверки не будет.
|
85
|
+
For example:
|
86
|
+
|
87
|
+
```yaml
|
88
|
+
query_params:
|
89
|
+
dbAct: getCities => Пример использования известных и неизменяемых параметров
|
90
|
+
optional: => Пример использования опциональных параметров. Они будут подставлены при передачи их при запросе
|
91
|
+
- city
|
92
|
+
- state
|
93
|
+
|
94
|
+
# Результат из примера выше:
|
95
|
+
# /api?dbAct=getCities&city=Tokio
|
96
|
+
```
|
97
|
+
```yaml
|
98
|
+
query_params:
|
99
|
+
- dbAct: getTarif
|
100
|
+
- org => Пример использования обязательных параметров.
|
101
|
+
- dest
|
102
|
+
- weight
|
103
|
+
|
104
|
+
# Результат из примера выше:
|
105
|
+
# /api?dbAct=getTarif&org=Tokio&dest=Beijing&weight=100
|
106
|
+
```
|
107
|
+
|
108
|
+
`mock` — Если вам нужно, чтобы реальные запросы не проходили во время тестирования,
|
109
|
+
вы можете заменить их на mocks.
|
110
|
+
Можно использовать как структуру yaml, так и путь к файлу yaml.
|
111
|
+
Например:
|
112
|
+
|
113
|
+
```yaml
|
114
|
+
mock: spec/mocks/http_clients/public/cities.yml
|
115
|
+
```
|
116
|
+
|
117
|
+
#### Объяснение сгенерированных файлов
|
118
|
+
|
119
|
+
`client.rb` — Унаследованный файл от главного диспетчера, и вы можете добавить некоторые методы настройки, пользовательские заголовки, параметры запросов, query-параметры.
|
120
|
+
|
121
|
+
`configuration.rb` — Добавляем путь к стороннему API, URL-адрес конфигурации и логгер.
|
122
|
+
|
123
|
+
`responder.rb` — По умолчанию используется стандартный обработчик ответов, обработанный в формате json. Но вы можете написать свой собственный.
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
---
|
128
|
+
### english
|
129
|
+
|
1
130
|
# HTTP requests dispatcher
|
2
131
|
|
3
132
|
This template-service allows you to define http requests to a third party through a lightweight set of instructions, including a route parser in yaml format
|
@@ -5,25 +134,25 @@ This template-service allows you to define http requests to a third party throug
|
|
5
134
|
## Usage
|
6
135
|
|
7
136
|
Add kapellmeister to your Gemfile:
|
8
|
-
|
137
|
+
At the moment, the latest version is 0.9.8 (The project is in the stage of performance testing, beta-test)
|
9
138
|
```ruby
|
10
139
|
gem 'kapellmeister', '~> 0.9.6'
|
11
140
|
```
|
12
141
|
|
13
|
-
### Add new third
|
142
|
+
### Add a new configuration for the third-party API:
|
14
143
|
|
15
144
|
$ bin/rails g kapellmeister:add_service %<ThirdPartyName> %<options> --%<flags>
|
16
145
|
|
17
|
-
`ThirdPartyName` —
|
146
|
+
`ThirdPartyName` — The name of the service, can be specified either CamelCased or under_scored
|
18
147
|
|
19
|
-
`options` —
|
148
|
+
`options` — Specify the configuration keys, usually `host`, `key` and `version`
|
20
149
|
|
21
|
-
`flags` — This generator
|
22
|
-
|
23
|
-
If you set it to `true
|
150
|
+
`flags` — This generator has only one flag so far.
|
151
|
+
The `responder` flag, `false` is the default value.
|
152
|
+
If you set it to `true`, the responder.rb file will be generated, which is used for analyzing and parsing the response.
|
24
153
|
|
25
|
-
All
|
26
|
-
Here
|
154
|
+
All instructions are lightweight files in the /lib directory of your application.
|
155
|
+
Here is an example of the structure:
|
27
156
|
|
28
157
|
``` Capfile
|
29
158
|
└── app
|
@@ -40,83 +169,86 @@ Here's the example of structure:
|
|
40
169
|
|
41
170
|
initializers/third_party_service.rb
|
42
171
|
|
43
|
-
If you
|
172
|
+
If you are using Rails gem, there is a `initializers` folder in your application. Add the secret keys in the initializer file.
|
44
173
|
|
45
174
|
app/lib/third_party_service.rb
|
46
175
|
|
47
|
-
|
176
|
+
The main file of your integration, a mixin that includes Kapellmeister::Base
|
48
177
|
|
49
178
|
app/lib/third_party_service
|
50
179
|
|
51
|
-
|
180
|
+
A directory containing `routes scheme`, `client`, `configuration` and an optional `responder`.
|
52
181
|
|
53
|
-
`routes.yml` — Routes to third
|
182
|
+
`routes.yml` — Routes to a third-party API in a nested format.
|
54
183
|
|
55
184
|
``` yaml
|
56
|
-
foo: => Wrapper
|
57
|
-
bar: =>
|
58
|
-
scheme: =>
|
185
|
+
foo: => Wrapper of the method
|
186
|
+
bar: => Name of the method
|
187
|
+
scheme: => Description of the scheme
|
59
188
|
method: POST => Request type (* required)
|
60
|
-
use_wrapper: true =>
|
61
|
-
path: buz =>
|
62
|
-
body: => Dry
|
63
|
-
query_params: =>
|
64
|
-
mock: =>
|
189
|
+
use_wrapper: true => Whether to wrap the method to ensure uniqueness. By default, true
|
190
|
+
path: buz => The real path (route). If there is no parameter, the path will be taken from the method name.
|
191
|
+
body: => Dry-scheme (from the set of DRY gems) to check the parameters. If there is no parameter, then there'll be no verification.
|
192
|
+
query_params: => Description of the query parameters. If there is no parameter, then there'll be no parameter substitution.
|
193
|
+
mock: => The structure or path to the mock file for the tests. If there is no parameter, the actual response to the request will be returned in the development environment.
|
65
194
|
|
195
|
+
# The result from the example above:
|
66
196
|
# client = ThirdParty::Client.new
|
67
197
|
# client.foo_bar { a: 'b' }
|
68
198
|
# => POST https://third_party.com/foo/buz DATA: { a: 'b' }
|
69
199
|
```
|
70
|
-
####
|
200
|
+
#### Explanation of the parameters:
|
71
201
|
|
72
|
-
`body` — You can use dry-
|
73
|
-
If this key doesn't exist
|
74
|
-
|
202
|
+
`body` — You can use the dry-scheme (from the set of DRY gems) to check the request parameters.
|
203
|
+
If this key doesn't exist, the verification will be skipped.
|
204
|
+
Example:
|
75
205
|
|
76
206
|
```yaml
|
77
|
-
body:
|
207
|
+
body: DrySchema
|
78
208
|
```
|
79
209
|
|
80
|
-
`query_params` — If request
|
81
|
-
Both arrays and hashes work.
|
82
|
-
If this key doesn't exist
|
83
|
-
|
210
|
+
`query_params` — If the request requires query parameters.
|
211
|
+
Both arrays and ruby-hashes work.
|
212
|
+
If this key doesn't exist, then there'll be no parameter substitution and validation.
|
213
|
+
Example:
|
84
214
|
|
85
215
|
```yaml
|
86
216
|
query_params:
|
87
|
-
dbAct: getCities =>
|
88
|
-
optional: =>
|
217
|
+
dbAct: getCities => Example of using known and immutable parameters
|
218
|
+
optional: => An example of using optional parameters. They'll be substituted when they are transmitted during the request
|
89
219
|
- city
|
90
220
|
- state
|
91
221
|
|
222
|
+
# The result from the example above:
|
92
223
|
# /api?dbAct=getCities&city=Tokio
|
93
224
|
```
|
94
225
|
```yaml
|
95
226
|
query_params:
|
96
227
|
- dbAct: getTarif
|
97
|
-
- org =>
|
228
|
+
- org => Example of using required parameters.
|
98
229
|
- dest
|
99
230
|
- weight
|
100
|
-
|
231
|
+
|
232
|
+
# The result from the example above:
|
101
233
|
# /api?dbAct=getTarif&org=Tokio&dest=Beijing&weight=100
|
102
234
|
```
|
103
235
|
|
104
|
-
`mock` —
|
105
|
-
|
106
|
-
|
107
|
-
|
236
|
+
`mock` — If you need real requests not to pass during testing,
|
237
|
+
you can replace them with mocks.
|
238
|
+
You can use both the yaml structure and the path to the yaml-file.
|
239
|
+
Example:
|
108
240
|
|
109
241
|
```yaml
|
110
242
|
mock: spec/mocks/http_clients/public/cities.yml
|
111
243
|
```
|
112
244
|
|
113
|
-
####
|
245
|
+
#### Explanation of the generated files
|
114
246
|
|
115
|
-
`client.rb` —
|
247
|
+
`client.rb` — An inherited file from the main dispatcher, and you can add some configuration methods, custom headers, request parameters, query-parameters.
|
116
248
|
|
117
|
-
`configuration.rb` — Add path to third
|
249
|
+
`configuration.rb` — Add the path to the third-party API, the configuration URL and the logger.
|
118
250
|
|
119
|
-
`responder.rb` —
|
251
|
+
`responder.rb` — By default, a standard response handler is used, parsed in json format. But you can write your own.
|
120
252
|
|
121
253
|
## Contributing
|
122
254
|
|
data/kapellmeister.gemspec
CHANGED
@@ -14,11 +14,9 @@ Gem::Specification.new do |gem|
|
|
14
14
|
|
15
15
|
gem.license = 'MIT'
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
fail 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
|
21
|
-
end
|
17
|
+
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless gem.respond_to?(:metadata)
|
18
|
+
|
19
|
+
gem.metadata['allowed_push_host'] = 'https://rubygems.org'
|
22
20
|
|
23
21
|
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(/^(test|spec|features)/) }
|
24
22
|
gem.bindir = 'exe'
|
@@ -30,13 +28,13 @@ Gem::Specification.new do |gem|
|
|
30
28
|
gem.add_dependency 'dry-schema', '~> 1.13'
|
31
29
|
gem.add_dependency 'faraday', '~> 2.10'
|
32
30
|
gem.add_dependency 'faraday-cookie_jar', '~> 0.0.7'
|
33
|
-
gem.add_dependency '
|
34
|
-
gem.add_dependency 'typhoeus', '~> 1.
|
31
|
+
gem.add_dependency 'faraday-follow_redirects', '~> 0.3.0'
|
32
|
+
gem.add_dependency 'faraday-typhoeus', '~> 1.1.0'
|
35
33
|
|
36
34
|
gem.add_development_dependency 'bundler', '~> 2.0', '>= 2.0.2'
|
37
35
|
gem.add_development_dependency 'rake', '~> 13.0'
|
38
36
|
gem.add_development_dependency 'redcarpet', '~> 1.17', '>= 1.17.0'
|
39
|
-
gem.add_development_dependency 'rubocop', '~> 1.
|
37
|
+
gem.add_development_dependency 'rubocop', '~> 1.6'
|
40
38
|
gem.add_development_dependency 'yard', '~> 0.7', '>= 0.7.5'
|
41
39
|
gem.metadata['rubygems_mfa_required'] = 'true'
|
42
40
|
end
|
data/lib/kapellmeister/base.rb
CHANGED
@@ -37,7 +37,7 @@ end
|
|
37
37
|
def generate_routes(json_scheme)
|
38
38
|
json_scheme.dup.each_with_object({}) do |(key, value), scheme|
|
39
39
|
scheme[key] = value.delete(:scheme) if (value.is_a?(Hash) && value.key?(:scheme)) || value.is_a?(String)
|
40
|
-
next if value.nil? || value.
|
40
|
+
next if value.nil? || value.empty?
|
41
41
|
|
42
42
|
generate_routes(value).map { |deep_key, deep_value| mapping(deep_key, deep_value, key, scheme) }
|
43
43
|
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
require '
|
2
|
-
require_relative '
|
1
|
+
require 'faraday/follow_redirects'
|
2
|
+
require_relative 'requests_extension'
|
3
3
|
|
4
4
|
class Kapellmeister::Dispatcher
|
5
5
|
def self.new(**args)
|
6
|
-
main_klass =
|
6
|
+
main_klass = module_parent.name&.delete('::')
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
module_parent.requests.each do |request|
|
9
|
+
include Kapellmeister::RequestsExtension.request_processing(main_klass, request)
|
10
10
|
end
|
11
11
|
super(**args)
|
12
12
|
end
|
@@ -60,7 +60,7 @@ class Kapellmeister::Dispatcher
|
|
60
60
|
faraday.request :multipart
|
61
61
|
faraday.response :logger, logger
|
62
62
|
faraday.response :json, content_type: 'application/json; charset=utf-8'
|
63
|
-
faraday.
|
63
|
+
faraday.response :follow_redirects
|
64
64
|
faraday.adapter :typhoeus do |http|
|
65
65
|
http.timeout = 20
|
66
66
|
end
|
@@ -3,7 +3,7 @@ module Kapellmeister::RequestsExtension
|
|
3
3
|
mod = if Object.const_defined?("#{self}::#{klass}InstanceMethods")
|
4
4
|
const_get("#{self}::#{klass}InstanceMethods")
|
5
5
|
else
|
6
|
-
const_set("#{klass}InstanceMethods", Module.new)
|
6
|
+
const_set(:"#{klass}InstanceMethods", Module.new)
|
7
7
|
end
|
8
8
|
|
9
9
|
mod.module_eval do
|
@@ -37,7 +37,7 @@ def parsed_query(params, data)
|
|
37
37
|
|
38
38
|
hash_data, filtered_query = *split_hashes(params)
|
39
39
|
required_empty_query, default_data = *hash_data.partition { |elem| elem.values.compact_blank.blank? }
|
40
|
-
data =
|
40
|
+
data = filtered_query.zip([]).to_h.compact_blank.merge(data) if data.is_a?(Hash)
|
41
41
|
_optional_data, default_data = *split_optional(default_data)
|
42
42
|
data = data.merge(default_data) if !data.blank? || !default_data.blank?
|
43
43
|
|
@@ -79,7 +79,7 @@ def generate_path(original_path, data)
|
|
79
79
|
end
|
80
80
|
|
81
81
|
def valid_body?(data, body)
|
82
|
-
return if body.blank? || body.is_a?(Hash)
|
82
|
+
return true if body.blank? || body.is_a?(Hash)
|
83
83
|
|
84
84
|
schema = Object.const_get(body).schema
|
85
85
|
result = schema.call(data)
|
@@ -89,7 +89,7 @@ def valid_body?(data, body)
|
|
89
89
|
end
|
90
90
|
|
91
91
|
def valid_query?(data, query)
|
92
|
-
return if query.blank?
|
92
|
+
return true if query.blank?
|
93
93
|
|
94
94
|
required_keys = query.map(&:to_sym)
|
95
95
|
|
@@ -99,7 +99,7 @@ def valid_query?(data, query)
|
|
99
99
|
data[:query_params] = data[:query_params].to_h.merge!(from_data)
|
100
100
|
|
101
101
|
different_keys = data[:query_params].transform_keys(&:to_sym)
|
102
|
-
return if required_keys.all? { |key| different_keys.key? key.to_sym }
|
102
|
+
return true if required_keys.all? { |key| different_keys.key? key.to_sym }
|
103
103
|
|
104
104
|
raise ArgumentError, "Query params needs keys #{required_keys}"
|
105
105
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kapellmeister
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.9.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DarkWater
|
@@ -53,33 +53,33 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 0.0.7
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: faraday-follow_redirects
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 0.3.0
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 0.3.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name: typhoeus
|
70
|
+
name: faraday-typhoeus
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.
|
75
|
+
version: 1.1.0
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 1.
|
82
|
+
version: 1.1.0
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: bundler
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -140,14 +140,14 @@ dependencies:
|
|
140
140
|
requirements:
|
141
141
|
- - "~>"
|
142
142
|
- !ruby/object:Gem::Version
|
143
|
-
version: '1.
|
143
|
+
version: '1.6'
|
144
144
|
type: :development
|
145
145
|
prerelease: false
|
146
146
|
version_requirements: !ruby/object:Gem::Requirement
|
147
147
|
requirements:
|
148
148
|
- - "~>"
|
149
149
|
- !ruby/object:Gem::Version
|
150
|
-
version: '1.
|
150
|
+
version: '1.6'
|
151
151
|
- !ruby/object:Gem::Dependency
|
152
152
|
name: yard
|
153
153
|
requirement: !ruby/object:Gem::Requirement
|
@@ -217,9 +217,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
217
217
|
version: 2.4.2
|
218
218
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
|
-
- - "
|
220
|
+
- - ">"
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
222
|
+
version: 1.3.1
|
223
223
|
requirements: []
|
224
224
|
rubygems_version: 3.3.7
|
225
225
|
signing_key:
|