libis-tools 0.9.46 → 0.9.47

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: 5c4ea6d45d995160cfed7e3bb5c03bf827e7d243
4
- data.tar.gz: dfc7078490c2d3356efbca78f44ada3115a560f1
3
+ metadata.gz: 83ad76b9425c2c4bb8d5714b0ea6b76fd664cc59
4
+ data.tar.gz: 4a29e2c39a8665237ddc33f7b5a88b189eeea702
5
5
  SHA512:
6
- metadata.gz: c1415f6036ae7ea6d05225e05dfbb826880d897dd711c954c1c965124ccbd17a479e0197eebc599fc942371e8cd8891907de24a67bd87a29e424de3a3ed054ab
7
- data.tar.gz: 8269ebc57fc653d420e2a5677ad12b08ce52a406fb4666d2e04b251d27e4e31253694c9402879c1b6e3df8ea0f22da00559d576e8afe9fe46aa235242244a7f0
6
+ metadata.gz: ff20d7930fe99c0c889f1e46ab81fa4fe0254f7d53d516b17f3a44d24d5c90ed2720bef69105fbfd6828c3751e06dc9c771fdcba7ce99b8ce89c864a07205a99
7
+ data.tar.gz: 533cd767b9bddff002b74b4148418e8b1700c81dd19b7795abcbca85f7e3f245ac8b95fdd39743dcb9efada17dca6bf91bc4c8565e0191916bab15783d0899c4
@@ -1,5 +1,5 @@
1
1
  module Libis
2
2
  module Tools
3
- VERSION = '0.9.46'
3
+ VERSION = '0.9.47'
4
4
  end
5
5
  end
data/spec/command_spec.rb CHANGED
@@ -56,7 +56,7 @@ describe 'Command' do
56
56
  result = Libis::Tools::Command.run('ls', 'abc')
57
57
  expect(result[:out]).to eq []
58
58
  expect(result[:err].size).to eq 1
59
- expect(result[:err][0]).to match /ls: cannot access abc: No such file or directory/
59
+ expect(result[:err][0]).to match /ls: cannot access '?abc'?: No such file or directory/
60
60
  expect(result[:status]).to eq 2
61
61
 
62
62
  end
data/spec/logger_spec.rb CHANGED
@@ -51,7 +51,7 @@ describe 'Logger' do
51
51
  end
52
52
 
53
53
  it 'should log fatal output' do
54
- test_logger.fatal 'Fatal message'
54
+ test_logger.fatal_error 'Fatal message'
55
55
  output = logoutput.string.lines.map(&:chomp)
56
56
  expect(output.size).to eq 1
57
57
  expect(output.last).to match /^F, #{timestamp_regex} FATAL : Fatal message$/
@@ -80,7 +80,7 @@ describe 'Logger' do
80
80
  # noinspection RubyResolve
81
81
  expect(output).not_to be_empty
82
82
 
83
- test_logger.fatal 'Fatal message'
83
+ test_logger.fatal_error 'Fatal message'
84
84
  output = logoutput.string.lines.map(&:chomp)
85
85
  # noinspection RubyResolve
86
86
  expect(output).not_to be_empty
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libis-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.46
4
+ version: 0.9.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kris Dekeyser