tty-screen 0.8.0 → 0.8.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: 4e17bafe91486f49afff31f04968d8515502eb3065f3739a796f987bd0ffed96
4
- data.tar.gz: 80112f9584cfc84a1c76eeeff88e08cac08853714c4d6e179aa92ad753bb9175
3
+ metadata.gz: 52e1a7bc49432930fe35ab1d2831d747f63c2a8478368200314212041c2a2a50
4
+ data.tar.gz: 1fb465ecf1b77a3dd62afb7a488ddb8e77976cbf5aff93551f5723ec6f6f8c7f
5
5
  SHA512:
6
- metadata.gz: c3a00a8c1cfa355c988f7999fdd2d3bd49b903cf7be4d3446cb50e8fa5bc8c17b96b9a6be7f329299ba0f6eb58a54744c2a64ccec9d9a3255498c02bbb37d876
7
- data.tar.gz: 73a02084a05564198f93fc5bc09b1db6d2eb90d426fbc0ce0d93f965b487c240d5a5c303f651c8afacc6b688c0e0780a1bc0953c0d39fca534432d8aca8eaf44
6
+ metadata.gz: 2f48acc4ba11662f0d7b17e693f46ac1ca28155db546552fe07a3cc1aeee62ff77ff1c48afceb063301222db8895bd0d5b89fda83da71a45d88e464df65e88af
7
+ data.tar.gz: ffeb5cb3f50af36233371bbb0fa860901d2ee7ca46b3845175ecd5d8071f161c82f63bdd2852dccc05ec5206acccee60781771fd5803a8bfb34642e0f022231f
@@ -1,5 +1,10 @@
1
1
  # Change log
2
2
 
3
+ ## [v0.8.1] - 2020-07-17
4
+
5
+ ### Fixed
6
+ * Fix name resolution with TTY::File by Alexey Nikitin (@tank-bohr)
7
+
3
8
  ## [v0.8.0] - 2020-05-28
4
9
 
5
10
  ### Added
@@ -131,6 +136,7 @@
131
136
  ### Fixed
132
137
  * Fix bug with screen detection from_io_console by @luxflux
133
138
 
139
+ [v0.8.1]: https://github.com/piotrmurach/tty-screen/compare/v0.8.0...v0.8.1
134
140
  [v0.8.0]: https://github.com/piotrmurach/tty-screen/compare/v0.7.1...v0.8.0
135
141
  [v0.7.1]: https://github.com/piotrmurach/tty-screen/compare/v0.7.0...v0.7.1
136
142
  [v0.7.0]: https://github.com/piotrmurach/tty-screen/compare/v0.6.5...v0.7.0
@@ -305,7 +305,7 @@ module TTY
305
305
  # @api private
306
306
  def command_exist?(command)
307
307
  exts = env.fetch("PATHEXT", "").split(::File::PATH_SEPARATOR)
308
- env.fetch("PATH", "").split(File::PATH_SEPARATOR).any? do |dir|
308
+ env.fetch("PATH", "").split(::File::PATH_SEPARATOR).any? do |dir|
309
309
  file = ::File.join(dir, command)
310
310
  ::File.exist?(file) || exts.any? { |ext| ::File.exist?("#{file}#{ext}") }
311
311
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TTY
4
4
  module Screen
5
- VERSION = "0.8.0"
5
+ VERSION = "0.8.1"
6
6
  end # Screen
7
7
  end # TTY
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tty-screen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Murach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake