fancy_irb 1.4.2 → 1.4.3

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: 5391eddeae48d04aa38b6eecc01e27398432112210373cae492c6e47659b111c
4
- data.tar.gz: 5cde9404cb26191d996b5e032c760c3b45fb268a26394b739a62ed1e821e8224
3
+ metadata.gz: e2983518481e3a3ea0996fa0db0b8eb01bf6a0c72072171746ff1dfe1fc4786f
4
+ data.tar.gz: 44d632ee043c0751300cd7ee48fddbd03e9086084f061803c6a1764d6a3ff706
5
5
  SHA512:
6
- metadata.gz: a879ea1e8f3e49aec81b70038ed4ed755a2601c8bdd93cd27fce901a35e81b8f3e4e8021b67b9add9ba7147d440f318cd8a816716428e906f2c64ff3f582660e
7
- data.tar.gz: 66e84ecfd94310686832e93acdf7d6bbe116ca12a2cfc21c8990a0a2810b446db0f838538ea1c311e89030165f38f6ef55bde61846b67ffc9c738990724c9184
6
+ metadata.gz: 6d0b61c283bee3ccbf950c164ee96aadb8e5ff29fbc6438a2b6cd4989b7a17f8a8af244675d337a43820edca54a0eb1e0dba311308d9c59cd3abae80369ecd86
7
+ data.tar.gz: d119df23b3dc249a73d5ff733dfd48c49e046c2fb932b913399412831da3e19097182b7fd1692489aeee5bb5f56927cba8f5ea6795d2bb0316d267d8abc73829
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.4.3
4
+ * Fix options given to `script` so it doesn't output timing info
5
+
3
6
  ## 1.4.2
4
7
  * Support Alpine Linux (fix #12)
5
8
 
@@ -24,10 +24,10 @@ module FancyIrb
24
24
  }
25
25
  elsif RbConfig::CONFIG['host_os'] =~ /linux(?!-musl)/
26
26
  TPUT = {
27
- :sc => `script -q -e -t /dev/null -c 'tput sc'`,
28
- :rc => `script -q -e -t /dev/null -c 'tput rc'`,
29
- :cuu1 => `script -q -e -t /dev/null -c 'tput cuu1'`,
30
- :cuf1 => `script -q -e -t /dev/null -c 'tput cuf1'`,
27
+ :sc => `script -q -e /dev/null -c 'tput sc'`,
28
+ :rc => `script -q -e /dev/null -c 'tput rc'`,
29
+ :cuu1 => `script -q -e /dev/null -c 'tput cuu1'`,
30
+ :cuf1 => `script -q -e /dev/null -c 'tput cuf1'`,
31
31
  }
32
32
  else
33
33
  TPUT = {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FancyIrb
4
- VERSION = '1.4.2'
4
+ VERSION = '1.4.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fancy_irb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-28 00:00:00.000000000 Z
11
+ date: 2021-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: paint
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  version: '0'
118
118
  requirements:
119
119
  - 'Windows: ansicon <https://github.com/adoxa/ansicon>'
120
- rubygems_version: 3.2.4
120
+ rubygems_version: 3.2.3
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: 'FancyIrb makes IRB # => friendly.'