diagnosticism 0.1.1 → 0.1.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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +22 -19
  3. data/README.md +25 -10
  4. data/Rakefile +19 -0
  5. data/lib/diagnosticism/version.rb +2 -2
  6. metadata +11 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9c64ae33f2ab16460131aff0f34f274a05f4f2f8a7421ea51734638a8c53f56
4
- data.tar.gz: d1d6046fa0c72cfccb22d81522239253019774d6398616ab6a93b139a2bf88a8
3
+ metadata.gz: c03c1428a19648f1991a11581c18a409600fe8654000b01e98f9b68efd7d9782
4
+ data.tar.gz: d9cbe3c47da8fdecc3c96b723bdfbf70ec7a686e89cb89fd8effdc44709493de
5
5
  SHA512:
6
- metadata.gz: b1d4262cf2d97c06246420967c516a25ac4621fee40c0bb678a1f667308d231490d630e6d0d5f346c6a8a9f7daaa335d80f89f4cde59134d5d3a879efef2cf72
7
- data.tar.gz: e2838442274d49a5be0c8b0c1d00aac34f7643e43c94c6ef2d846d5d06a995a9b158b1cfcb45600a433dd342b65fc0319916f9d661277570590e2d6f2b135a06
6
+ metadata.gz: d3cfbe45bd4c17f581fb174bce495454e6436277793a51c981a2a1204dad36a2006a70a152c682d9172d29d784ada8898135e4039969a7c09a5ad70068a7c15e
7
+ data.tar.gz: 7187633c0e4b3c5582d663f478a9f443b0d739d90f9eb6584d54fa6f7e6fefb3ef1fafcfc6df09110b7cfd49cc692170b18ab7d8142bbffdb32e0caae608bdcf
data/LICENSE CHANGED
@@ -1,30 +1,33 @@
1
- Diagnosticism.Ruby
1
+ Diagnosticism.Ruby - BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Matthew Wilson and Synesis Information Systems
2
4
 
3
- Copyright (c) 2025, Matthew Wilson and Synesis Software
4
5
  All rights reserved.
5
6
 
6
7
  Redistribution and use in source and binary forms, with or without
7
- modification, are permitted provided that the following conditions are met:
8
+ modification, are permitted provided that the following conditions are
9
+ met:
8
10
 
9
- * Redistributions of source code must retain the above copyright notice, this
10
- list of conditions and the following disclaimer.
11
+ 1. Redistributions of source code must retain the above copyright notice,
12
+ this list of conditions and the following disclaimer.
11
13
 
12
- * Redistributions in binary form must reproduce the above copyright notice,
13
- this list of conditions and the following disclaimer in the documentation
14
- and/or other materials provided with the distribution.
14
+ 2. Redistributions in binary form must reproduce the above copyright notice,
15
+ this list of conditions and the following disclaimer in the documentation
16
+ and/or other materials provided with the distribution.
15
17
 
16
- * Neither the name of Diagnosticism nor the names of its
17
- contributors may be used to endorse or promote products derived from
18
- this software without specific prior written permission.
18
+ 3. Neither the name of the copyright holder nor the names of its
19
+ contributors may be used to endorse or promote products derived from
20
+ this software without specific prior written permission.
19
21
 
20
22
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
23
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
26
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
+ POSSIBILITY OF SUCH DAMAGE.
30
33
 
data/README.md CHANGED
@@ -1,13 +1,18 @@
1
- # Diagnosticism <!-- omit in toc -->
2
-
3
- T.B.C.
1
+ # Diagnosticism.Ruby <!-- omit in toc -->
4
2
 
3
+ ![Language](https://img.shields.io/badge/Ruby-CC342D?style=flat&logo=ruby&logoColor=white)
4
+ [![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
5
5
  [![Gem Version](https://badge.fury.io/rb/diagnosticism.svg)](https://badge.fury.io/rb/diagnosticism)
6
+ [![Last Commit](https://img.shields.io/github/last-commit/synesissoftware/Diagnosticism.Ruby)](https://github.com/synesissoftware/Diagnosticism.Ruby/commits/master)
7
+ [![Ruby](https://github.com/synesissoftware/Diagnosticism.Ruby/actions/workflows/ruby.yml/badge.svg)](https://github.com/synesissoftware/Diagnosticism.Ruby/actions/workflows/ruby.yml)
8
+
9
+ Basic diagnostic facilities, for Ruby
6
10
 
7
11
 
8
12
  ## Introduction
9
13
 
10
- T.B.C.
14
+ **Diagnosticism** provides low-level diagnostics facilities to support library programming. The first **Diagnosticism** library was a C library with a C++ wrapper. There have been several implementations in other languages. **Diagnosticism.Ruby** is the
15
+ Ruby version.
11
16
 
12
17
 
13
18
  ## Table of Contents <!-- omit in toc -->
@@ -19,6 +24,7 @@ T.B.C.
19
24
  - [Project Information](#project-information)
20
25
  - [Where to get help](#where-to-get-help)
21
26
  - [Contribution guidelines](#contribution-guidelines)
27
+ - [Dependencies](#dependencies)
22
28
  - [Related projects](#related-projects)
23
29
  - [License](#license)
24
30
 
@@ -28,40 +34,49 @@ T.B.C.
28
34
  Install via **gem** as in:
29
35
 
30
36
  ```
31
- gem install diagnositicm
37
+ gem install diagnosticism
32
38
  ```
33
39
 
34
40
  or add it to your `Gemfile`.
35
41
 
36
42
 
37
- T.B.C.
38
-
43
+ ## Components
39
44
 
40
45
 
41
46
 
42
- ## Components
43
47
 
44
48
  T.B.C.
45
49
 
46
50
 
47
51
  ## Examples
48
52
 
49
- T.B.C.
53
+ Examples are provided in the ```examples``` directory, along with a markdown description for each. A detailed list TOC of them is provided in [EXAMPLES.md](./EXAMPLES.md).
50
54
 
51
55
 
52
56
  ## Project Information
53
57
 
58
+
54
59
  ### Where to get help
55
60
 
56
61
  [GitHub Page](https://github.com/synesissoftware/Diagnosticism.Ruby "GitHub Page")
57
62
 
63
+
58
64
  ### Contribution guidelines
59
65
 
60
66
  Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/Diagnosticism.Ruby.
61
67
 
68
+
69
+ ### Dependencies
70
+
71
+ * [**xqsr3**](https://github.com/synesissoftware/xqsr3/)
72
+
73
+
62
74
  ### Related projects
63
75
 
64
- T.B.C.
76
+ * [**Diagnosticism**](https://github.com/synesissoftware/Diagnosticism/)
77
+ * [**Diagnosticism.Go**](https://github.com/synesissoftware/Diagnosticism.Go/)
78
+ * [**Diagnosticism.Python**](https://github.com/synesissoftware/Diagnosticism.Python/)
79
+
65
80
 
66
81
 
67
82
  ### License
data/Rakefile ADDED
@@ -0,0 +1,19 @@
1
+ # Rakefile for xqsr3
2
+
3
+ require 'rake/testtask'
4
+
5
+
6
+ Rake::TestTask.new do |tt|
7
+
8
+ tt.libs << "lib"
9
+ tt.name = "test"
10
+ tt.test_files = FileList['test/**/tc_*.rb']
11
+ tt.verbose = true
12
+ end
13
+
14
+
15
+ task :default => :test
16
+
17
+
18
+ # ############################## end of file ############################# #
19
+
@@ -5,7 +5,7 @@
5
5
  # Purpose: Version for Diagnosticism.Ruby library
6
6
  #
7
7
  # Created: 3rd January 2025
8
- # Updated: 6th March 2025
8
+ # Updated: 29th August 2025
9
9
  #
10
10
  # Home: http://github.com/synesissoftware/Diagnosticism.Ruby
11
11
  #
@@ -50,7 +50,7 @@
50
50
  module Diagnosticism
51
51
 
52
52
  # Current version of the Diagnosticism library
53
- VERSION = '0.1.1'
53
+ VERSION = '0.1.2'
54
54
 
55
55
  private
56
56
  VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: diagnosticism
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-03-06 00:00:00.000000000 Z
10
+ date: 2025-08-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: xqsr3
@@ -17,6 +16,9 @@ dependencies:
17
16
  - - "~>"
18
17
  - !ruby/object:Gem::Version
19
18
  version: '0.39'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 0.39.4
20
22
  type: :development
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,9 +26,12 @@ dependencies:
24
26
  - - "~>"
25
27
  - !ruby/object:Gem::Version
26
28
  version: '0.39'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 0.39.4
27
32
  description: 'Diagnostic facilities, for Ruby
28
33
 
29
- '
34
+ '
30
35
  email: matthew@synesis.com.au
31
36
  executables: []
32
37
  extensions: []
@@ -34,6 +39,7 @@ extra_rdoc_files: []
34
39
  files:
35
40
  - LICENSE
36
41
  - README.md
42
+ - Rakefile
37
43
  - lib/diagnosticism/doomgram.rb
38
44
  - lib/diagnosticism/version.rb
39
45
  - test/unit/tc_doomgram.rb
@@ -42,7 +48,6 @@ homepage: http://github.com/synesissoftware/Diagnosticism.Ruby
42
48
  licenses:
43
49
  - BSD-3-Clause
44
50
  metadata: {}
45
- post_install_message:
46
51
  rdoc_options: []
47
52
  require_paths:
48
53
  - lib
@@ -60,8 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
65
  - !ruby/object:Gem::Version
61
66
  version: '0'
62
67
  requirements: []
63
- rubygems_version: 3.1.6
64
- signing_key:
68
+ rubygems_version: 3.6.9
65
69
  specification_version: 4
66
70
  summary: diagnosticism
67
71
  test_files: []