elasticsearch-api 7.17.7 → 7.17.8
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/Gemfile +1 -1
- data/Rakefile +2 -2
- data/lib/elasticsearch/api/version.rb +1 -1
- data/spec/spec_helper.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5db74ad1519b7447dd18436434d9c5b5f0c56194c7b7ef47ade81835e02356d0
|
|
4
|
+
data.tar.gz: c8d635f2e9aee5864162154b071f06bf99f12ae405916c5e24cce41c86bd59bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdf4de75d415e892f60e2fc2b19b3630ed0c884ebbee31e55399019058b9d66312ffb5c5025cfa1e4d06b4831f70fb2df032aea24338a43f4486c4bb8b0f44b9
|
|
7
|
+
data.tar.gz: 829742e8ea76fcfa9bf6e1707a73fb5f3c42956894d2a5bc7d36e5a8ad47664f77c8b06893f11ec87e15365f453617b35a57b21b0a66dc42ec4f6ac1dcc8428e
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -65,7 +65,7 @@ namespace :test do
|
|
|
65
65
|
filename = 'tmp/artifacts.json'
|
|
66
66
|
`curl -s https://artifacts-api.elastic.co/v1/versions/#{version_number} -o #{filename}`
|
|
67
67
|
|
|
68
|
-
unless File.
|
|
68
|
+
unless File.exist?("./#{filename}")
|
|
69
69
|
STDERR.puts '[!] Couldn\'t download artifacts file'
|
|
70
70
|
exit 1
|
|
71
71
|
end
|
|
@@ -82,7 +82,7 @@ namespace :test do
|
|
|
82
82
|
puts 'Downloading zip file:'
|
|
83
83
|
`curl -s #{zip_url} -o tmp/#{filename}`
|
|
84
84
|
|
|
85
|
-
unless File.
|
|
85
|
+
unless File.exist?("./tmp/#{filename}")
|
|
86
86
|
STDERR.puts '[!] Couldn\'t download artifact'
|
|
87
87
|
exit 1
|
|
88
88
|
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -71,8 +71,12 @@ end
|
|
|
71
71
|
RSpec.configure do |config|
|
|
72
72
|
config.include(HelperModule)
|
|
73
73
|
config.formatter = 'documentation'
|
|
74
|
-
config.color_mode = :on
|
|
75
74
|
config.add_formatter('RspecJunitFormatter', 'tmp/elasticsearch-api-junit.xml')
|
|
75
|
+
config.add_formatter(
|
|
76
|
+
'RSpec::Core::Formatters::HtmlFormatter',
|
|
77
|
+
"tmp/elasticsearch-#{ENV['TEST_SUITE']}-#{RUBY_VERSION}-#{ENV['STACK_VERSION']}.html"
|
|
78
|
+
)
|
|
79
|
+
config.color_mode = :on
|
|
76
80
|
end
|
|
77
81
|
|
|
78
82
|
class NotFound < StandardError; end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticsearch-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.17.
|
|
4
|
+
version: 7.17.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karel Minarik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|
|
@@ -719,7 +719,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
719
719
|
- !ruby/object:Gem::Version
|
|
720
720
|
version: '0'
|
|
721
721
|
requirements: []
|
|
722
|
-
rubygems_version: 3.
|
|
722
|
+
rubygems_version: 3.4.19
|
|
723
723
|
signing_key:
|
|
724
724
|
specification_version: 4
|
|
725
725
|
summary: Ruby API for Elasticsearch.
|