namo 0.31.6 → 0.31.7
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 +10 -0
- data/Gemfile +1 -1
- data/lib/Namo/VERSION.rb +1 -1
- data/namo.gemspec +2 -0
- data/test/console_test.rb +0 -2
- data/test/demo_test.rb +0 -2
- data/test/sizing_test.rb +0 -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: d547869d975c2e3ee5b38ee628540ebfc1b3d780042d529a6aea7806bb63800c
|
|
4
|
+
data.tar.gz: 48f24f4a8a553df687a01bcbb7c9e245ca359dcf6e29cd5b506b843f17ea1f56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2277117f6394b1e4d03323aa233663e53addb14f262dc2f9dab39a1b26fb5a13e9a17b5ffab3bc642bcb3704cfb3995c50c5d4a9b3c083d12f9a0674236c80ab
|
|
7
|
+
data.tar.gz: 0a91ce01ec748e8620bfbecefe2d15ad5808012cbc771734589fbb4b0f4b9c89948fc47088e94230b5a1690a33699d5d4a9e0d80337f670bccc3d41d401df793
|
data/CHANGELOG
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 20260827
|
|
4
|
+
|
|
5
|
+
0.31.7: + namo.rb.gemspec, so that the gem resolves under both names.
|
|
6
|
+
|
|
7
|
+
1. + namo.rb.gemspec
|
|
8
|
+
2. ~ Gemfile: /gemspec/gemspec name: 'namo'/, bundler refusing to parse a Gemfile whose bare gemspec directive finds more than one gemspec to choose from.
|
|
9
|
+
3. ~ namo.gemspec: + the file's own name as a header comment, which namo.rb.gemspec carries and which every other file here does.
|
|
10
|
+
4. ~ Namo::VERSION: /0.31.6/0.31.7/
|
|
11
|
+
|
|
12
|
+
|
|
3
13
|
## 20260826
|
|
4
14
|
|
|
5
15
|
0.31.6: ~ Namo::Collection: a row operation yields a Namo rather than a memberless Collection.
|
data/Gemfile
CHANGED
data/lib/Namo/VERSION.rb
CHANGED
data/namo.gemspec
CHANGED
data/test/console_test.rb
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
require 'minitest/autorun'
|
|
4
4
|
require 'minitest-spec-context'
|
|
5
5
|
|
|
6
|
-
require_relative '../lib/namo'
|
|
7
|
-
|
|
8
6
|
# bin/console is the conventional gem prompt: irb with the library loaded and
|
|
9
7
|
# nothing else. It held the demo's fixtures until 20260826, so that a question
|
|
10
8
|
# asked here was asked of the data the demo had shown — a guarantee the demo's
|
data/test/demo_test.rb
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
require 'minitest/autorun'
|
|
4
4
|
require 'minitest-spec-context'
|
|
5
5
|
|
|
6
|
-
require_relative '../lib/namo'
|
|
7
|
-
|
|
8
6
|
# script/demo is 300-odd lines exercising selection, projection, formulae,
|
|
9
7
|
# group_by, summary, the operators and inspect, and nothing else runs it. These
|
|
10
8
|
# assert only that each section completes, which is the difference between a
|
data/test/sizing_test.rb
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
require 'minitest/autorun'
|
|
4
4
|
require 'minitest-spec-context'
|
|
5
5
|
|
|
6
|
-
require_relative '../lib/namo'
|
|
7
|
-
|
|
8
6
|
# script/sizing produces the figures in ROADMAP.md's "What size it is for". A
|
|
9
7
|
# measurement whose script has rotted is a measurement nobody can repeat, which is
|
|
10
8
|
# the condition the script exists to end — so assert it still runs, at sizes small
|