power_assert 2.0.1 → 2.0.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: 28b26a04c7891b2d3bf6f71b23936f90fac854304434bafda19329cb5eb8785f
4
- data.tar.gz: 47650e43f13d7ee72a1e5dc4452f328fd1e75791ec8b80622b8130afd79aaa30
3
+ metadata.gz: ef3a6c41c62e422518ce4af1079ff4adafdd89622bf9c3bcbfaec37c54e40a79
4
+ data.tar.gz: 9bc30cc7170a6e4e9512a332500e4ec1fe5b6f6f1a0d392a8c291405e6c908f8
5
5
  SHA512:
6
- metadata.gz: 343d98448f071de39eeb7f9ff71497726bbeb50c8c707f665c3f0aa8ba1696fed698a2f27f930e1d50be65bc40c1210cfe9f0c7306cc40ea780a1dc88a09d73e
7
- data.tar.gz: 842e379a4c2a965c4a2d3704bed2b4a4ba505d52086d52cb1cd706b41429096c9a3078eecf01b8b59175dedb4f1dd9c30f5d8dcc46d47969c1d6abd29fa47172
6
+ metadata.gz: 7eca57c8c6ab384ccb03cab66038762d0f044be57a4e7f6487a17f5c7ed9b0f25eea605e0c71001100d7c8406c34642bb3a6e2f7d05afc7bab70474038857623
7
+ data.tar.gz: 1e3891703480bfd37a6ac590cd9b7c66dee25890dff8b28ee5994e39f5285fee55957b68641f799b121d1c5e0c453fc8a1cf9ba9c9b3e17e8816ceb9b9145bcc
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: 'github-actions'
4
+ directory: '/'
5
+ schedule:
6
+ interval: 'weekly'
@@ -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 }}
@@ -15,7 +15,7 @@ jobs:
15
15
  TEST_SYMLINK: ${{ matrix.TEST_SYMLINK }}
16
16
  continue-on-error: ${{ matrix.ruby-version == 'head' }}
17
17
  steps:
18
- - uses: actions/checkout@v2
18
+ - uses: actions/checkout@v3
19
19
  - name: Set up Ruby
20
20
  uses: ruby/setup-ruby@v1
21
21
  with:
@@ -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.3"
3
3
  end
data/lib/power_assert.rb CHANGED
@@ -7,7 +7,7 @@ begin
7
7
  captured = false
8
8
  TracePoint.new(:return, :c_return) do |tp|
9
9
  captured = true
10
- unless tp.binding and tp.return_value and tp.callee_id
10
+ unless tp.return_value and tp.callee_id
11
11
  raise ''
12
12
  end
13
13
  end.enable { __id__ }
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.3
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-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit
@@ -118,6 +118,7 @@ extensions: []
118
118
  extra_rdoc_files:
119
119
  - README.md
120
120
  files:
121
+ - ".github/dependabot.yml"
121
122
  - ".github/workflows/ci.yml"
122
123
  - ".gitignore"
123
124
  - BSDL
@@ -157,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
158
  - !ruby/object:Gem::Version
158
159
  version: '0'
159
160
  requirements: []
160
- rubygems_version: 3.3.0.dev
161
+ rubygems_version: 3.3.7
161
162
  signing_key:
162
163
  specification_version: 4
163
164
  summary: Power Assert for Ruby