libclimate-ruby 0.17.3 → 0.17.4
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/CHANGES.md +6 -0
- data/NEWS.md +1 -0
- data/TODO.md +1 -1
- data/lib/libclimate/climate.rb +3 -4
- data/lib/libclimate/version.rb +2 -2
- 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: 12b680d3616e07c1a5df64e812e8362c263faa869f762d97fa6fa3f78df48708
|
|
4
|
+
data.tar.gz: 69bdb465690a9ad674931257763361f2705434ffc24d9d9858d14c0374976888
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22cc7f354e01e5cfb0c920149e6924648c8d829fce53abb62f67c312d87796d23124951f2e4b19c1670d469f58b3402985a3d694919c2317265decbcb7eace22
|
|
7
|
+
data.tar.gz: 9efc27b49e2ff325daf3f2a7657cd2ced163faed09ffd779db831cd058c8ea6a68cb4e0d5ee19247c52eebff0d848b977a1ea274c39263802d460a59acf61396
|
data/CHANGES.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# libCLImate.Ruby - Changes <!-- omit in toc -->
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## 0.17.4 - 30th August 2026
|
|
5
|
+
|
|
6
|
+
* made `Climate#make_abort_message_()` non-public;
|
|
7
|
+
* corrected shared project URL metadata in **libclimate-ruby.gemspec**;
|
|
8
|
+
|
|
9
|
+
|
|
4
10
|
## 0.17.3 - 28th August 2026
|
|
5
11
|
|
|
6
12
|
* library source **Home:** URLs now use `https`;
|
data/NEWS.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
| Date | News Item |
|
|
4
4
|
| ------------------ | ----------------------------------------------------------------------------------------------- |
|
|
5
|
+
| 30th August 2026 | [**libCLImate.Ruby** 0.17.4](https://github.com/synesissoftware/libCLImate.Ruby/releases/tag/0.17.4) |
|
|
5
6
|
| 28th August 2026 | [**libCLImate.Ruby** 0.17.3](https://github.com/synesissoftware/libCLImate.Ruby/releases/tag/0.17.3) |
|
|
6
7
|
| 15th August 2026 | [**libCLImate.Ruby** 0.17.2](https://github.com/synesissoftware/libCLImate.Ruby/releases/tag/0.17.2) |
|
|
7
8
|
| 30th July 2026 | [**libCLImate.Ruby** 0.17.1](https://github.com/synesissoftware/libCLImate.Ruby/releases/tag/0.17.1) |
|
data/TODO.md
CHANGED
data/lib/libclimate/climate.rb
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Purpose: Definition of the ::LibCLImate::Climate class
|
|
6
6
|
#
|
|
7
7
|
# Created: 13th July 2015
|
|
8
|
-
# Updated:
|
|
8
|
+
# Updated: 28th August 2026
|
|
9
9
|
#
|
|
10
10
|
# Home: https://github.com/synesissoftware/libCLImate.Ruby
|
|
11
11
|
#
|
|
@@ -264,7 +264,7 @@ class Climate
|
|
|
264
264
|
end
|
|
265
265
|
else
|
|
266
266
|
|
|
267
|
-
message = climate.make_abort_message_
|
|
267
|
+
message = climate.__send__(:make_abort_message_, "unrecognised flag '#{flag}'")
|
|
268
268
|
|
|
269
269
|
if false
|
|
270
270
|
|
|
@@ -312,7 +312,7 @@ class Climate
|
|
|
312
312
|
end
|
|
313
313
|
else
|
|
314
314
|
|
|
315
|
-
message = climate.make_abort_message_
|
|
315
|
+
message = climate.__send__(:make_abort_message_, "unrecognised option '#{option}'")
|
|
316
316
|
|
|
317
317
|
if false
|
|
318
318
|
|
|
@@ -378,7 +378,6 @@ class Climate
|
|
|
378
378
|
GIVEN_SPECS_ = "_Given_Specs_01B59422_8407_4c89_9432_8160C52BD5AD"
|
|
379
379
|
end # module Climate_Constants_
|
|
380
380
|
|
|
381
|
-
public
|
|
382
381
|
def make_abort_message_(msg)
|
|
383
382
|
|
|
384
383
|
if 0 != (usage_help_suffix || 0).size
|
data/lib/libclimate/version.rb
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Purpose: Version for libclimate.Ruby library
|
|
6
6
|
#
|
|
7
7
|
# Created: 13th July 2015
|
|
8
|
-
# Updated:
|
|
8
|
+
# Updated: 30th August 2026
|
|
9
9
|
#
|
|
10
10
|
# Home: https://github.com/synesissoftware/libCLImate.Ruby
|
|
11
11
|
#
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
module LibCLImate
|
|
46
46
|
|
|
47
47
|
# Current version of the libCLImate.Ruby library
|
|
48
|
-
VERSION = '0.17.
|
|
48
|
+
VERSION = '0.17.4'
|
|
49
49
|
|
|
50
50
|
private
|
|
51
51
|
VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
|