duration.rb 0.6.1 → 0.6.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b96f8854514150e9a991174eee5ab4dbb5f0e829e3e3c15a093b1846a127f06
4
- data.tar.gz: 7333289ca6c7552ac8db51fcfe6ea03a1101adc5f512a5167e2959ff03e544b8
3
+ metadata.gz: 96a11b338ddcec99f2b1b42f0c98b478937688114644edf233bee9b6a894c75d
4
+ data.tar.gz: 74717586689952c86539c811efbb6c4666b768b9dd2345759b0f4638a7b9b7a7
5
5
  SHA512:
6
- metadata.gz: 5c763588f6127dd447cdfb7f0ec84230aec91ca79d7b561e76ed8084899e6bdcff073726498bfd079c430cc7e43990fe34b0cd1afa9fb5236ee9c9efa9c66ba7
7
- data.tar.gz: cd053efb36ff1ac0f323464464ed879d19c6326af14b99aba93af9f3b12908744a00e6838b355e6a45e879236d4d40773072af965b726261ddcb3ebbe3589b54
6
+ metadata.gz: 501a0a8bc4e39897ac84e5c3ec1ad346115a68b0a2c6f99b8bd1b7d3622bebe5821ccc8cf058e961c52285920783ef57ce9c0f8ec7bb085cb69f1db3fc4c37d9
7
+ data.tar.gz: eb816a10954321a09980a31c0cce9409574a556ee958b4500d9cccfdb849813c683279f9c94d239b6d212275e1f08fd4157e092f113d6ef2ba813bbe87e88138
data/CHANGELOG CHANGED
@@ -1,5 +1,14 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 20260819
4
+
5
+ 0.6.2: ~ duration.rb.gemspec: spec.files reordered, the globs first.
6
+
7
+ 1. ~ duration.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 monotonic.rb shared. The same 35 files ship, in the same gem; only the order in the source changes.
8
+ 2. ~ duration.rb.gemspec: + a trailing comma to the last element of spec.files, which had none. Without it the reorder would have moved an uncommaed line into the middle of the list and the gemspec would not have parsed.
9
+ 3. ~ Duration::VERSION: /0.6.1/0.6.2/
10
+
11
+
3
12
  ## 20260816
4
13
 
5
14
  0.6.1: Documentation fixes for Months, which said one thing in the README and another in the class comment, and showed a third in the examples.
data/duration.rb.gemspec CHANGED
@@ -22,13 +22,13 @@ Gem::Specification.new do |spec|
22
22
  spec.required_ruby_version = '>= 2.5'
23
23
 
24
24
  spec.files = [
25
+ Dir['lib/**/*.rb'],
26
+ Dir['test/**/*.rb'],
25
27
  'CHANGELOG',
26
28
  'duration.rb.gemspec',
27
29
  'Gemfile',
28
- Dir['lib/**/*.rb'],
29
30
  'Rakefile',
30
31
  'README.md',
31
- Dir['test/**/*.rb']
32
32
  ].flatten
33
33
 
34
34
  spec.development_dependencies = %w{
@@ -1,3 +1,3 @@
1
1
  module Duration
2
- VERSION = '0.6.1'
2
+ VERSION = '0.6.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: duration.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoran