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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +11 -3
  3. data/README.md +5 -7
  4. data/lib/Namo/VERSION.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90910055e2c50136c6b364a227484075c17a4d60f9aeb2eaff2f674d8b214271
4
- data.tar.gz: 2210e6e62f753d9e337188f0a6d16095f85565d6f3dc0be5a918f5b1be22c378
3
+ metadata.gz: 11011fc9115f460be75cc35c2f4a99f7d695a53a0ef362b714b4e564cef682ee
4
+ data.tar.gz: 9bf58afbf1f52f800c12cad38963253ed7cc371fd966b45f98131ca154595d98
5
5
  SHA512:
6
- metadata.gz: 89647d9897342b47358bc861a05a6b7861545b8257f57e6fd89b802f9deaaabc6b93b75af56f3ed7538e67be5e30fb7d522e20719ed2ce5135d19e7c22bdef37
7
- data.tar.gz: '05669679f14b36cba17c1646ac0bfcd755d7c57a17d32ec5f5c2057ae67dde255c0c93b04b439eeb080067be143a317cece7891a9318006aa49159e819ec5558'
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.0: Initial release.
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 coordinates by finding unique values per dimension.
11
- 5. + Namo#[]: Select by named dimension using keyword arguments, using any one of a single value, and array, or a range.
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
@@ -2,5 +2,5 @@
2
2
  # Namo::VERSION
3
3
 
4
4
  module Namo
5
- VERSION = '0.0.0'
5
+ VERSION = '0.0.1'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: namo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran