power_assert 2.0.1 → 2.0.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: 28b26a04c7891b2d3bf6f71b23936f90fac854304434bafda19329cb5eb8785f
4
- data.tar.gz: 47650e43f13d7ee72a1e5dc4452f328fd1e75791ec8b80622b8130afd79aaa30
3
+ metadata.gz: 47e0778736ea1f2970d83e7a01f0d2d9f02e08b7a9039303604b2eb27fb80c30
4
+ data.tar.gz: 3c31dbe167ebce5f5166b19ea4596718a9a236b336561bf06b7f0cf3f2139e38
5
5
  SHA512:
6
- metadata.gz: 343d98448f071de39eeb7f9ff71497726bbeb50c8c707f665c3f0aa8ba1696fed698a2f27f930e1d50be65bc40c1210cfe9f0c7306cc40ea780a1dc88a09d73e
7
- data.tar.gz: 842e379a4c2a965c4a2d3704bed2b4a4ba505d52086d52cb1cd706b41429096c9a3078eecf01b8b59175dedb4f1dd9c30f5d8dcc46d47969c1d6abd29fa47172
6
+ metadata.gz: 40c03bdf0538e693eacee97e89e49e83424ce610e6b111bb2a8d39bc95a57dde407fd1091da8e2e56f4dd426440c9dd875d04163580826db575724519e688fd8
7
+ data.tar.gz: 37e8105b9b7d9b31c7af94a4e0d6e81232fa2d0d3f2d446b944b22d9568d93d83fd646e695d9c8a278a3fc613cdb028b076cc6188a576221b3a8d1a11b58e922
@@ -7,7 +7,7 @@ jobs:
7
7
  strategy:
8
8
  fail-fast: false
9
9
  matrix:
10
- ruby-version: [ '3.0', 2.7, 2.6, 2.5, head ]
10
+ ruby-version: [ 3.1, '3.0', 2.7, 2.6, 2.5, head ]
11
11
  os: [ ubuntu-latest, macos-latest ]
12
12
  TEST_SYMLINK: [ yes, no ]
13
13
  runs-on: ${{ matrix.os }}
@@ -21,8 +21,10 @@ if defined?(RubyVM)
21
21
  end
22
22
 
23
23
  basic_operators = [
24
- :+, :-, :*, :/, :%, :==, :===, :<, :<=, :<<, :[], :[]=,
25
- :length, :size, :empty?, :succ, :>, :>=, :!, :!=, :=~, :freeze, :-@, :max, :min, :nil?
24
+ :+, :-, :*, :/, :%, :==, :===, :<, :<=, :<<, :[], :[]=, :length, :size,
25
+ :empty?, :nil?, :succ, :>, :>=, :!, :!=, :=~, :freeze, :-@, :max, :min,
26
+ # :call (it is just used for block call optimization)
27
+ :&, :|
26
28
  ]
27
29
 
28
30
  basic_classes.each do |klass|
@@ -1,5 +1,8 @@
1
1
  require 'power_assert/configuration'
2
- require 'io/console/size'
2
+ begin
3
+ require 'io/console/size'
4
+ rescue LoadError
5
+ end
3
6
 
4
7
  module PowerAssert
5
8
  class InspectedValue
@@ -44,7 +47,8 @@ module PowerAssert
44
47
  def inspect
45
48
  if PowerAssert.configuration.colorize_message
46
49
  if PowerAssert.configuration.inspector == :pp
47
- width = [IO.console_size[1] - 1 - @indent, 10].max
50
+ console_width = IO.respond_to?(:console_size) ? IO.console_size[1] : 80
51
+ width = [console_width - 1 - @indent, 10].max
48
52
  IRB::ColorPrinter.pp(@value, '', width)
49
53
  else
50
54
  IRB::Color.colorize_code(@value.to_s, ignore_error: true)
@@ -1,3 +1,3 @@
1
1
  module PowerAssert
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: power_assert
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuki Tsujimoto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-29 00:00:00.000000000 Z
11
+ date: 2022-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  - !ruby/object:Gem::Version
158
158
  version: '0'
159
159
  requirements: []
160
- rubygems_version: 3.3.0.dev
160
+ rubygems_version: 3.3.7
161
161
  signing_key:
162
162
  specification_version: 4
163
163
  summary: Power Assert for Ruby