specinfra 2.19.1 → 2.19.2

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
  SHA1:
3
- metadata.gz: bc3318f204fb814a47b94836d3ce0b18b42f96f8
4
- data.tar.gz: 9f35cf7a454e5ccf421e4f006ea80efb6a73fd3a
3
+ metadata.gz: 77242905a70512dc47b7ca8c28e7febd18cf91d8
4
+ data.tar.gz: 71cf440c0549c5f08e659fb3d6a45ee599c2559e
5
5
  SHA512:
6
- metadata.gz: d630839bf2e2d12eab4416e2731f7d91002f05305682012f25818bb4bb7346a1f59dc56ccf08863ea3aab1718c00b7fda2edd0b20c14b1229acf9c34c988b684
7
- data.tar.gz: ca0acc02307541d8b90f6ba26cd81d9054a196d9ae918ad78bc2df6e0751b5f374524d46bf4e92ffc27ab2d01b48af91a91ac3e0ac8b282da09cae58a8fe51bb
6
+ metadata.gz: 0f2aa107b5badfd6010e1b36d50f5ca424802fad7054216650171c8ae0373013224b2dfec2887fbf6c3a748b5792cca54c85096c7fb1c9b620d1d7cc20c6c209
7
+ data.tar.gz: 3ba44715cd89f879d630cfaa7b1ef2809b4524036b68dd2618c68089d743dbba687cf55f96634dff2a4fb4b0caed3818f3173928d862bdad360d3c665030eb52
@@ -59,7 +59,7 @@ module Specinfra
59
59
  def get_metadata(path='')
60
60
  metadata = {}
61
61
 
62
- keys = Specinfra::Runner.run_command("curl #{@base_uri}#{path}").stdout.split("\n")
62
+ keys = Specinfra::Runner.run_command("curl -s #{@base_uri}#{path}").stdout.split("\n")
63
63
 
64
64
  keys.each do |key|
65
65
  if key =~ %r{/$}
@@ -79,7 +79,7 @@ module Specinfra
79
79
  end
80
80
 
81
81
  def get_endpoint(path)
82
- ret = Specinfra::Runner.run_command("curl #{@base_uri}#{path}")
82
+ ret = Specinfra::Runner.run_command("curl -s #{@base_uri}#{path}")
83
83
  if ret.success?
84
84
  ret.stdout
85
85
  else
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.19.1"
2
+ VERSION = "2.19.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specinfra
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.19.1
4
+ version: 2.19.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gosuke Miyashita