power_assert 2.0.4 → 2.0.5
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 +4 -4
- data/lib/power_assert/enable_tracepoint_events.rb +3 -1
- data/lib/power_assert/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f842260e6bea4e899b1e6af63144e7eda3ce9703788902893576890d61c1f6be
|
4
|
+
data.tar.gz: e1c53238ed0eb63702879ecedf209cbe5cea34ee8829d9ffb18af1694b2f8e26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d43ea1d5aa5c3e78defd497e9fda7077aae1f989d0e8b4428eb2fad5852559e597e27313b8867d665cc3c0c141a8ab56a3720c42075922d33b465d465a147481
|
7
|
+
data.tar.gz: 35a8335719afd408c219bb2838496fc0e438f404fdd1abf15147a28fd77d46ed32c6ef59a46caf55cf96ffbd0b03f20f277af37959d97b6510f77c9c73c952f0
|
@@ -24,7 +24,9 @@ if defined?(RubyVM)
|
|
24
24
|
:+, :-, :*, :/, :%, :==, :===, :<, :<=, :<<, :[], :[]=, :length, :size,
|
25
25
|
:empty?, :nil?, :succ, :>, :>=, :!, :!=, :=~, :freeze, :-@, :max, :min,
|
26
26
|
# :call (it is just used for block call optimization)
|
27
|
-
:&,
|
27
|
+
:&, :|,
|
28
|
+
# :default (no specialized instruction for this)
|
29
|
+
:pack, :include?,
|
28
30
|
]
|
29
31
|
|
30
32
|
basic_classes.each do |klass|
|
data/lib/power_assert/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: power_assert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kazuki Tsujimoto
|
8
|
+
autorequire:
|
8
9
|
bindir: exe
|
9
10
|
cert_chain: []
|
10
|
-
date: 2024-
|
11
|
+
date: 2024-12-23 00:00:00.000000000 Z
|
11
12
|
dependencies: []
|
12
13
|
description: Power Assert shows each value of variables and method calls in the expression.
|
13
14
|
It is useful for testing, providing which value wasn't correct when the condition
|
@@ -42,6 +43,7 @@ licenses:
|
|
42
43
|
- BSD-2-Clause
|
43
44
|
- Ruby
|
44
45
|
metadata: {}
|
46
|
+
post_install_message:
|
45
47
|
rdoc_options:
|
46
48
|
- "--main"
|
47
49
|
- README.md
|
@@ -58,7 +60,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
60
|
- !ruby/object:Gem::Version
|
59
61
|
version: '0'
|
60
62
|
requirements: []
|
61
|
-
rubygems_version: 3.
|
63
|
+
rubygems_version: 3.5.3
|
64
|
+
signing_key:
|
62
65
|
specification_version: 4
|
63
66
|
summary: Power Assert for Ruby
|
64
67
|
test_files: []
|