fancy_irb 1.4.1 → 1.4.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
  SHA256:
3
- metadata.gz: 40508c0d3a64506b5878d27b75d223fa1b645ec0982ada74b79b8b9253a60a0c
4
- data.tar.gz: dbd263da91f17746e6206445f7cba2e3d1f000e90e8afe729188a9c661b44d92
3
+ metadata.gz: 5391eddeae48d04aa38b6eecc01e27398432112210373cae492c6e47659b111c
4
+ data.tar.gz: 5cde9404cb26191d996b5e032c760c3b45fb268a26394b739a62ed1e821e8224
5
5
  SHA512:
6
- metadata.gz: e69ece654e7fcf989e9e29fb934c4766a397cd45a1596134e91727985f79c7e8d09f4f493b10a13cbbea3cd84fac2384b9c1e75d423908c6a362ebc801b5d824
7
- data.tar.gz: 445abebc2567df925338440eb143e51f314987a0803f0930d24acb708cd25f11dba6bcef7f06b180c1e42f2785c46a0e6df7494435842a2d8bd55926b3ecfe79
6
+ metadata.gz: a879ea1e8f3e49aec81b70038ed4ed755a2601c8bdd93cd27fce901a35e81b8f3e4e8021b67b9add9ba7147d440f318cd8a816716428e906f2c64ff3f582660e
7
+ data.tar.gz: 66e84ecfd94310686832e93acdf7d6bbe116ca12a2cfc21c8990a0a2810b446db0f838538ea1c311e89030165f38f6ef55bde61846b67ffc9c738990724c9184
@@ -1,5 +1,8 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.4.2
4
+ * Support Alpine Linux (fix #12)
5
+
3
6
  ## 1.4.1
4
7
  * Relax unicode-display_width requirement
5
8
 
@@ -22,7 +22,7 @@ module FancyIrb
22
22
  :cuu1 => "\e[1A",
23
23
  :cuf1 => "\e[1C",
24
24
  }
25
- elsif RbConfig::CONFIG['host_os'] =~ /linux/
25
+ elsif RbConfig::CONFIG['host_os'] =~ /linux(?!-musl)/
26
26
  TPUT = {
27
27
  :sc => `script -q -e -t /dev/null -c 'tput sc'`,
28
28
  :rc => `script -q -e -t /dev/null -c 'tput rc'`,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FancyIrb
4
- VERSION = '1.4.1'
4
+ VERSION = '1.4.2'
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.1
4
+ version: 1.4.2
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-02 00:00:00.000000000 Z
11
+ date: 2021-01-28 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.3
120
+ rubygems_version: 3.2.4
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: 'FancyIrb makes IRB # => friendly.'