namo 0.0.0 → 0.0.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 +11 -3
- data/README.md +5 -7
- data/lib/Namo/VERSION.rb +1 -1
- 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: 11011fc9115f460be75cc35c2f4a99f7d695a53a0ef362b714b4e564cef682ee
|
|
4
|
+
data.tar.gz: 9bf58afbf1f52f800c12cad38963253ed7cc371fd966b45f98131ca154595d98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb32fce7accb48566f6610254315ce068111bd7b582cff01e7e890dcf8308ac12882ffd06a4fc01a889ba58df9481ebb79a1541bac6f710530cb3271d960973b
|
|
7
|
+
data.tar.gz: 3a4330c0e98f19ad5a4937ebc01ba4725658da0a6c3f330969683b3f68b54611d37a26c0a42b68761c4ac2f15db7fd362868ed28be4006167fb37964812a3665
|
data/CHANGELOG
CHANGED
|
@@ -2,10 +2,18 @@ CHANGELOG
|
|
|
2
2
|
_______
|
|
3
3
|
|
|
4
4
|
2026-03-15
|
|
5
|
-
0.0.
|
|
5
|
+
0.0.1: Fix README.md and CHANGELOG.
|
|
6
|
+
|
|
7
|
+
1. ~ README.md: Fix Contributing secton.
|
|
8
|
+
2. ~ CHANGELOG: Use the same description in the summary as in the commit message.
|
|
9
|
+
3. ~ Namo::VERSION: /0.0.0/0.0.1/
|
|
10
|
+
|
|
11
|
+
2026-03-15
|
|
12
|
+
0.0.0: The initial release has instantiation from hashes, automatic inferral of dimension names and co-ordinates, and selection of data by a single value, an array, or a range.
|
|
6
13
|
|
|
7
14
|
1. + Namo
|
|
8
15
|
2. + Namo#initialize: Initialise from an array of hashes.
|
|
9
16
|
3. + Namo#dimensions: Dimension names are inferred from hash keys.
|
|
10
|
-
4. + Namo#coordinates: Extract the
|
|
11
|
-
5. + Namo#[]: Select by named dimension using keyword arguments, using any one of a single value,
|
|
17
|
+
4. + Namo#coordinates: Extract the co-ordinates by finding unique values per dimension.
|
|
18
|
+
5. + Namo#[]: Select by named dimension using keyword arguments, using any one of a single value, an array, or a range.
|
|
19
|
+
6. + Namo::VERSION
|
data/README.md
CHANGED
|
@@ -75,13 +75,11 @@ Namo: na(med) (di)m(ensi)o(ns). A companion to Numo (numeric arrays for Ruby).
|
|
|
75
75
|
|
|
76
76
|
## Contributing
|
|
77
77
|
|
|
78
|
-
Fork it (https://github.com/thoran/namo/fork)
|
|
79
|
-
Create your feature branch (git checkout -b my-new-feature)
|
|
80
|
-
Commit your changes (git commit -am 'Add some feature')
|
|
81
|
-
Push to the branch (git push origin my-new-feature)
|
|
82
|
-
Create a new pull request
|
|
83
|
-
License
|
|
84
|
-
The gem is available as open source under the terms of the Ruby License.
|
|
78
|
+
1. Fork it (https://github.com/thoran/namo/fork)
|
|
79
|
+
2. Create your feature branch (git checkout -b my-new-feature)
|
|
80
|
+
3. Commit your changes (git commit -am 'Add some feature')
|
|
81
|
+
4. Push to the branch (git push origin my-new-feature)
|
|
82
|
+
5. Create a new pull request
|
|
85
83
|
|
|
86
84
|
## License
|
|
87
85
|
|
data/lib/Namo/VERSION.rb
CHANGED