antbird 1.0.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/build-os.yml +4 -1
- data/Gemfile.lock +5 -5
- data/README.md +61 -0
- data/lib/antbird/client/json_decoder.rb +20 -0
- data/lib/antbird/client.rb +59 -16
- data/lib/antbird/rest_api/rest_api_opensearch_v3_6.rb +1505 -0
- data/lib/antbird/rest_api/rest_api_opensearch_v3_7.rb +1505 -0
- data/lib/antbird/rest_api/rest_api_opensearch_v3_8.rb +1514 -0
- data/lib/antbird/version.rb +1 -1
- metadata +6 -2
data/lib/antbird/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: antbird
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- fukayatsu
|
|
@@ -118,12 +118,16 @@ files:
|
|
|
118
118
|
- lib/antbird.rb
|
|
119
119
|
- lib/antbird/client.rb
|
|
120
120
|
- lib/antbird/client/errors.rb
|
|
121
|
+
- lib/antbird/client/json_decoder.rb
|
|
121
122
|
- lib/antbird/rest_api/rest_api_opensearch_v3_0.rb
|
|
122
123
|
- lib/antbird/rest_api/rest_api_opensearch_v3_1.rb
|
|
123
124
|
- lib/antbird/rest_api/rest_api_opensearch_v3_2.rb
|
|
124
125
|
- lib/antbird/rest_api/rest_api_opensearch_v3_3.rb
|
|
125
126
|
- lib/antbird/rest_api/rest_api_opensearch_v3_4.rb
|
|
126
127
|
- lib/antbird/rest_api/rest_api_opensearch_v3_5.rb
|
|
128
|
+
- lib/antbird/rest_api/rest_api_opensearch_v3_6.rb
|
|
129
|
+
- lib/antbird/rest_api/rest_api_opensearch_v3_7.rb
|
|
130
|
+
- lib/antbird/rest_api/rest_api_opensearch_v3_8.rb
|
|
127
131
|
- lib/antbird/version.rb
|
|
128
132
|
homepage: https://github.com/fukayatsu/antbird
|
|
129
133
|
licenses:
|
|
@@ -143,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
147
|
- !ruby/object:Gem::Version
|
|
144
148
|
version: '0'
|
|
145
149
|
requirements: []
|
|
146
|
-
rubygems_version: 4.0.
|
|
150
|
+
rubygems_version: 4.0.18
|
|
147
151
|
specification_version: 4
|
|
148
152
|
summary: Nearly auto-generated OpenSearch client
|
|
149
153
|
test_files: []
|