elasticsearch-test-runner 0.10.0 → 0.10.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74628e9c64f4c668f6e4ef87c94afa47ee6539b22ab3a28ce4fd25e8ae69d457
4
- data.tar.gz: e9fc240ffa3a200f1e3cb257ba73b297145117a75c19c38e4a7194695e3e5ddb
3
+ metadata.gz: bde01ffcc7b5491ae480bae5b2e56266ac260e2f8b2ac2b59398198b322a6878
4
+ data.tar.gz: c1d71ed1c9cf48fb385523432708079257b9125a851b001167e2730a65e9287e
5
5
  SHA512:
6
- metadata.gz: 27b6f144c51341b040891a80a23353b328f1378a3ba33503e3dfbe6f6cf86dc501f45717fb4af9a3b7dd72fe8fa21eae2c5ce91d7e4764a7a877e3fd48ef0590
7
- data.tar.gz: e94c3308a4733421362d13af89915db5b010ec72d76218ccd7d8efa25a3bf1c8f9e0ea1a19b0e798ba44655b7e8a2df2feab8cc7642c4d97ed1f8aeb353901ff
6
+ metadata.gz: 8f196cf82543f702eab710a0c45e6a1b8cc8fa3924d15c88962aeebb29a078b39bdb3f4f5cc740a8d3908c24a093cc08baa7abec2f262738470fc2678dcf66c6
7
+ data.tar.gz: 4ccc45276182e019c918d2f3400f9c459cfd8f886e20d781120489ae643048c7ae080b93c007d4afd13a96f94c163d98cb8cb1bbb5590cd6d226d2a8f1ff7e20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.1] - 2024-11-13
4
+
5
+ - Creates directory for tests if it doesn't exist.
6
+
3
7
  ## [0.10.0] - 2024-11-13
4
8
 
5
9
  - Using tar.gz file for downloaded tests instead of zip file.
@@ -52,6 +52,7 @@ module Elasticsearch
52
52
  def untar_file(path)
53
53
  puts 'Extracting tar files'
54
54
  puts path
55
+ FileUtils.mkdir_p(path) unless File.directory?(path)
55
56
  `tar -zxf #{FILENAME} --strip-components=1 -C #{path}/`
56
57
  puts 'Removing tar file'
57
58
  end
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Elasticsearch
21
21
  module Tests
22
- VERSION = '0.10.0'
22
+ VERSION = '0.10.1'
23
23
  end
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elasticsearch-test-runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic Client Library Maintainers