month.rb 0.11.1 → 0.11.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 +8 -0
- data/LICENSE +21 -0
- data/lib/Month/VERSION.rb +1 -1
- data/month.rb.gemspec +1 -0
- data/test/tc_gemspec.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 004e8bf2949af6d70273e0538352a4715108b0f88b841afe0ce8182d451a9436
|
|
4
|
+
data.tar.gz: ff01821e09e2025c7a53214f635d2376a1a8f0e7c25c70dba1e51bb8aa7d1859
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90091e457c6b088e7ba220924be89fe1baaad546febb5ab00277f90af3bb40256b278d46876a24e507b429a6b96be24ab626df26d6d514b491f432ed45e1a146
|
|
7
|
+
data.tar.gz: 69d96ccdb5994caad9aeddc5d22da460c6abbf38d17e5e8a4492d78142fcf8066e5adb6cf65d3acc352f554ffe03e5973b44cc423ee89f36ad31e0b158962a0f
|
data/CHANGELOG
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## 20260819
|
|
4
4
|
|
|
5
|
+
0.11.2: + LICENSE, which the gemspec had claimed since 0.10.0 without one being present.
|
|
6
|
+
|
|
7
|
+
1. + LICENSE: the MIT text, copyright 2006-2026. spec.license = 'MIT' has been declared since the gemspec was written, so rubygems has shown a licence for this gem that the repository did not carry and the built gem did not contain. Anyone taking the gem at its word had nothing to read. impuri was in the same state and fixed it at its 0.12.4.
|
|
8
|
+
2. ~ month.rb.gemspec: + 'LICENSE' to spec.files, without which the file would sit in the repository and still not ship.
|
|
9
|
+
3. ~ test/tc_gemspec.rb: + LICENSE to the loose files the gem is expected to carry. That assertion is exact, so the file and the manifest cannot part company without the suite saying so.
|
|
10
|
+
4. ~ Month::VERSION: /0.11.1/0.11.2/
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
0.11.1: Tidy the gemspec, ship what it should, fill in its metadata, and guard it with a test.
|
|
6
14
|
|
|
7
15
|
1. - month.rb.gemspec: spec.date, pinned to '2024-03-06'. A build sets the date; pinning it means every gem built since has claimed to be from that day. impuri removed the same at its 0.9.0.
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2006-2026 thoran
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/lib/Month/VERSION.rb
CHANGED
data/month.rb.gemspec
CHANGED
data/test/tc_gemspec.rb
CHANGED
|
@@ -28,7 +28,7 @@ class TC_gemspec < Minitest::Test
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def test_ships_the_loose_files_and_not_only_lib
|
|
31
|
-
assert_equal %w{CHANGELOG Gemfile README.md TODO.txt month.rb.gemspec}, spec.files.reject{|f| f =~ %r{^(lib|test)/}}.sort
|
|
31
|
+
assert_equal %w{CHANGELOG Gemfile LICENSE README.md TODO.txt month.rb.gemspec}, spec.files.reject{|f| f =~ %r{^(lib|test)/}}.sort
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
def test_declares_no_runtime_dependencies
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: month.rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thoran
|
|
@@ -35,6 +35,7 @@ extra_rdoc_files: []
|
|
|
35
35
|
files:
|
|
36
36
|
- CHANGELOG
|
|
37
37
|
- Gemfile
|
|
38
|
+
- LICENSE
|
|
38
39
|
- README.md
|
|
39
40
|
- TODO.txt
|
|
40
41
|
- lib/Array/extract_optionsX.rb
|