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 +4 -4
- data/CHANGELOG +9 -0
- data/duration.rb.gemspec +2 -2
- data/lib/Duration/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: 96a11b338ddcec99f2b1b42f0c98b478937688114644edf233bee9b6a894c75d
|
|
4
|
+
data.tar.gz: 74717586689952c86539c811efbb6c4666b768b9dd2345759b0f4638a7b9b7a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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{
|
data/lib/Duration/VERSION.rb
CHANGED