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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e008af1595126fc59add8c846945db43f78b94f1348825eb2cf605747f5025b
4
- data.tar.gz: b287b4ec69e3618a8dda21cb01edfc487dfde348c1ba514513e63bbb61d68d6c
3
+ metadata.gz: 12b680d3616e07c1a5df64e812e8362c263faa869f762d97fa6fa3f78df48708
4
+ data.tar.gz: 69bdb465690a9ad674931257763361f2705434ffc24d9d9858d14c0374976888
5
5
  SHA512:
6
- metadata.gz: f45267cf4b3b37b26406a480f3efd3b92f5126fc399a898ddc2655fa61a962a58f1bd187bee330fd620503732b00a71f06446bbdaaf0a425b53078015c6ad050
7
- data.tar.gz: abcdcbefa5dc783d431c52bbb74d073f8eada8064ece0cf101868a066b7188bd5750dc499dcabd0e3c5323843a3b5b1d612855763806db5e169d34bb84379259
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
@@ -3,7 +3,7 @@
3
3
 
4
4
  ## Functional improvements
5
5
 
6
- * [ ] Take `make_abort_message_()` to non-`public` again;
6
+ * [x] ~~~Take `make_abort_message_()` to non-`public` again~~~;
7
7
 
8
8
 
9
9
  ## Performance improvements
@@ -5,7 +5,7 @@
5
5
  # Purpose: Definition of the ::LibCLImate::Climate class
6
6
  #
7
7
  # Created: 13th July 2015
8
- # Updated: 19th August 2026
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_("unrecognised flag '#{flag}'")
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_("unrecognised option '#{option}'")
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
@@ -5,7 +5,7 @@
5
5
  # Purpose: Version for libclimate.Ruby library
6
6
  #
7
7
  # Created: 13th July 2015
8
- # Updated: 28th August 2026
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.3'
48
+ VERSION = '0.17.4'
49
49
 
50
50
  private
51
51
  VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libclimate-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.3
4
+ version: 0.17.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson