impuri 0.9.0 → 0.10.0
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/CHANGELOG +8 -0
- data/ImpURI.gemspec +1 -2
- data/lib/ImpURI/VERSION.rb +1 -1
- data/test/ImpURI/class_methods.rb +426 -426
- data/test/ImpURI/instance_methods.rb +377 -377
- metadata +1 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6611f3db5d9b8b599247bbe6141a10bf166dfc9470ae71e9b345d11ccbb7a6ec
|
|
4
|
+
data.tar.gz: 9745a6127cd818bace3a0ed8d9fdff86242ae01385d5f7f90dbcf655c35ebb12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27a5b988acd092e0e9ea0b6b676a52c95678249e8e085f8a74f677c7b72bc61b846bfad343492a852ae06a67afada6c16368be9961b7d65927a70b008c881ad5
|
|
7
|
+
data.tar.gz: 9b3eacd4a16d8d794cdbb287862a169200ea43f64637f896f2765c6ef5a98637ee749b0d19148a6a05e7db9efb1989a05b2da03134a07da79520c6b1709e2d8b
|
data/CHANGELOG
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## 20260805
|
|
4
4
|
|
|
5
|
+
0.10.0: Move the tests onto the expectation form Minitest supports
|
|
6
|
+
|
|
7
|
+
1. ~ tests: x.must_equal y --> _(x).must_equal y, across all 801 assertions in the two test files. The global form was Minitest reopening Object so that every object answered must_equal, which it has since removed. Minitest's own documentation prefers the wrapped form, because it carries the test context rather than reaching for a thread-local to find it.
|
|
8
|
+
2. - ImpURI.gemspec: the development dependency upon minitest-global_expectations, which was added in 0.9.0 only to keep the tests running while they were in the old form.
|
|
9
|
+
3. ~ tests: require 'minitest/global_expectations/autorun' --> require 'minitest/autorun'.
|
|
10
|
+
|
|
11
|
+
## 20260805
|
|
12
|
+
|
|
5
13
|
0.9.0: Make the gem loadable on its own, rather than only where the helper files were already on the load path
|
|
6
14
|
|
|
7
15
|
1. Moved the vendored helpers from lib/ImpURI/ up into lib/, so that they sit where they are required from. 0.8.0 shipped all seventeen of them, but one directory too deep: only lib/ goes onto the load path, so require '_meta/blankQ' looked for lib/_meta/blankQ.rb while the file sat at lib/ImpURI/_meta/blankQ.rb. The gem could therefore only be loaded on a machine which already had those helpers elsewhere on the load path, which is to say mine.
|
data/ImpURI.gemspec
CHANGED
data/lib/ImpURI/VERSION.rb
CHANGED