monotonic.rb 0.10.0 → 0.10.1
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/lib/Monotonic/VERSION.rb +1 -1
- data/monotonic.rb.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb1187f971afc9f7b5320c21e69f48cad1f27c544dede617e374ed9b8f9d1c4e
|
|
4
|
+
data.tar.gz: 618b4c6de862523c4b9863313e56655b8f9f3faa152106aee367cee91d70c9e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a668945aeda8a04ca88ec27afb3f2029abba5385c59024deca5384b0ad27f7df4162276a6435846ad16234a44911ab74d8d0f7259aeadda14c892da9c0f2652
|
|
7
|
+
data.tar.gz: 38082719c8489978b530f27189a9afa188bee315ab0ecef077ed5da030ab500b0428e2b655c81187407ecb45f1bb9c76bb0cc873f087c097b2bc604f49e20a9a
|
data/CHANGELOG
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 20260819
|
|
4
|
+
|
|
5
|
+
0.10.1: ~ monotonic.rb.gemspec: spec.files reordered, the globs first.
|
|
6
|
+
|
|
7
|
+
1. ~ monotonic.rb.gemspec: spec.files reordered, the two Dir globs first and the loose files alphabetically after them, as moby and measurand have it. The globs are what the gem is and the rest is paperwork, so adding a file to the paperwork now never disturbs them. This gemspec had sorted the globs in among the loose files by path, which duration.rb shared until its 0.6.2. The same 16 files ship, in the same gem; only the order in the source changes.
|
|
8
|
+
2. ~ Monotonic::VERSION: /0.10.0/0.10.1/
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
## 20260817
|
|
4
12
|
|
|
5
13
|
0.10.0: + Monotonic::Measurement arithmetic, so that a speedup is a ratio which knows how well it is known.
|
data/lib/Monotonic/VERSION.rb
CHANGED
data/monotonic.rb.gemspec
CHANGED
|
@@ -26,13 +26,13 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.required_ruby_version = '>= 2.5'
|
|
27
27
|
|
|
28
28
|
spec.files = [
|
|
29
|
+
Dir['lib/**/*.rb'],
|
|
30
|
+
Dir['test/**/*.rb'],
|
|
29
31
|
'CHANGELOG',
|
|
30
32
|
'Gemfile',
|
|
31
|
-
Dir['lib/**/*.rb'],
|
|
32
33
|
'monotonic.rb.gemspec',
|
|
33
34
|
'Rakefile',
|
|
34
35
|
'README.md',
|
|
35
|
-
Dir['test/**/*.rb'],
|
|
36
36
|
].flatten
|
|
37
37
|
|
|
38
38
|
spec.dependencies = [
|