diagnosticism 0.0.0
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 +7 -0
- data/LICENSE +30 -0
- data/README.md +73 -0
- data/lib/diagnosticism/version.rb +67 -0
- data/test/unit/ts_all.rb +12 -0
- metadata +52 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 42d3f913989a3c2f25df69a718fe8d304270a6464f7abb0b6c2ff1645a8c3295
|
4
|
+
data.tar.gz: cf4e94ef03c1a65e5649a4362515ac13a0ee677fca718bcb35cf6eda54669bb2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 60e0c6713d0eb9eeb9ad6be2d09abb7f394fb39385665404ac6a55c10cbdb7cf7080169a8c93d3bb3382350d28c928ffc85cc9a9ccee1a073e453982fefcb09c
|
7
|
+
data.tar.gz: 9bfc66bf3cf08cb42e2496036a902e5c2996a6032449d937b71873d99960c435425877343becfcb3d20e55f32b1e74a46d3c133aa464820f92acfe26fbb96163
|
data/LICENSE
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
Diagnosticism.Ruby
|
2
|
+
|
3
|
+
Copyright (c) 2025, Matthew Wilson and Synesis Software
|
4
|
+
All rights reserved.
|
5
|
+
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
8
|
+
|
9
|
+
* Redistributions of source code must retain the above copyright notice, this
|
10
|
+
list of conditions and the following disclaimer.
|
11
|
+
|
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.
|
15
|
+
|
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.
|
19
|
+
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
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.
|
30
|
+
|
data/README.md
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
# Diagnosticism <!-- omit in toc -->
|
2
|
+
|
3
|
+
T.B.C.
|
4
|
+
|
5
|
+
[](https://badge.fury.io/rb/diagnosticism)
|
6
|
+
|
7
|
+
|
8
|
+
## Introduction
|
9
|
+
|
10
|
+
T.B.C.
|
11
|
+
|
12
|
+
|
13
|
+
## Table of Contents <!-- omit in toc -->
|
14
|
+
|
15
|
+
- [Introduction](#introduction)
|
16
|
+
- [Installation](#installation)
|
17
|
+
- [Components](#components)
|
18
|
+
- [Examples](#examples)
|
19
|
+
- [Project Information](#project-information)
|
20
|
+
- [Where to get help](#where-to-get-help)
|
21
|
+
- [Contribution guidelines](#contribution-guidelines)
|
22
|
+
- [Related projects](#related-projects)
|
23
|
+
- [License](#license)
|
24
|
+
|
25
|
+
|
26
|
+
## Installation
|
27
|
+
|
28
|
+
Install via **gem** as in:
|
29
|
+
|
30
|
+
```
|
31
|
+
gem install diagnositicm
|
32
|
+
```
|
33
|
+
|
34
|
+
or add it to your `Gemfile`.
|
35
|
+
|
36
|
+
|
37
|
+
T.B.C.
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
## Components
|
43
|
+
|
44
|
+
T.B.C.
|
45
|
+
|
46
|
+
|
47
|
+
## Examples
|
48
|
+
|
49
|
+
T.B.C.
|
50
|
+
|
51
|
+
|
52
|
+
## Project Information
|
53
|
+
|
54
|
+
### Where to get help
|
55
|
+
|
56
|
+
[GitHub Page](https://github.com/synesissoftware/Diagnosticism.Ruby "GitHub Page")
|
57
|
+
|
58
|
+
### Contribution guidelines
|
59
|
+
|
60
|
+
Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/Diagnosticism.Ruby.
|
61
|
+
|
62
|
+
### Related projects
|
63
|
+
|
64
|
+
T.B.C.
|
65
|
+
|
66
|
+
|
67
|
+
### License
|
68
|
+
|
69
|
+
**Diagnosticism.Ruby** is released under the 3-clause BSD license. See [LICENSE](./LICENSE) for details.
|
70
|
+
|
71
|
+
|
72
|
+
<!-- ########################### end of file ########################### -->
|
73
|
+
|
@@ -0,0 +1,67 @@
|
|
1
|
+
|
2
|
+
# ######################################################################## #
|
3
|
+
# File: lib/diagnosticism/version.rb
|
4
|
+
#
|
5
|
+
# Purpose: Version for Diagnosticism.Ruby library
|
6
|
+
#
|
7
|
+
# Created: 3rd January 2025
|
8
|
+
# Updated: 3rd January 2025
|
9
|
+
#
|
10
|
+
# Home: http://github.com/synesissoftware/Diagnosticism.Ruby
|
11
|
+
#
|
12
|
+
# Author: Matthew Wilson
|
13
|
+
#
|
14
|
+
# Copyright (c) 2025, Matthew Wilson and Synesis Information Systems
|
15
|
+
# All rights reserved.
|
16
|
+
#
|
17
|
+
# Redistribution and use in source and binary forms, with or without
|
18
|
+
# modification, are permitted provided that the following conditions are
|
19
|
+
# met:
|
20
|
+
#
|
21
|
+
# * Redistributions of source code must retain the above copyright
|
22
|
+
# notice, this list of conditions and the following disclaimer.
|
23
|
+
#
|
24
|
+
# * Redistributions in binary form must reproduce the above copyright
|
25
|
+
# notice, this list of conditions and the following disclaimer in the
|
26
|
+
# documentation and/or other materials provided with the distribution.
|
27
|
+
#
|
28
|
+
# * Neither the names of the copyright holders nor the names of its
|
29
|
+
# contributors may be used to endorse or promote products derived from
|
30
|
+
# this software without specific prior written permission.
|
31
|
+
#
|
32
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
33
|
+
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
34
|
+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
35
|
+
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
36
|
+
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
37
|
+
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
38
|
+
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
39
|
+
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
40
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
41
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
42
|
+
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
43
|
+
#
|
44
|
+
# ######################################################################## #
|
45
|
+
|
46
|
+
|
47
|
+
=begin
|
48
|
+
=end
|
49
|
+
|
50
|
+
module Diagnosticism
|
51
|
+
|
52
|
+
# Current version of the Diagnosticism library
|
53
|
+
VERSION = '0.0.0'
|
54
|
+
|
55
|
+
private
|
56
|
+
VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
|
57
|
+
public
|
58
|
+
# Major version of the Diagnosticism library
|
59
|
+
VERSION_MAJOR = VERSION_PARTS_[0] # :nodoc:
|
60
|
+
# Minor version of the Diagnosticism library
|
61
|
+
VERSION_MINOR = VERSION_PARTS_[1] # :nodoc:
|
62
|
+
# Revision version of the Diagnosticism library
|
63
|
+
VERSION_REVISION = VERSION_PARTS_[2] # :nodoc:
|
64
|
+
end # module Diagnosticism
|
65
|
+
|
66
|
+
# ############################## end of file ############################# #
|
67
|
+
|
data/test/unit/ts_all.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# executes all other tests
|
4
|
+
|
5
|
+
this_dir = File.expand_path(File.dirname(__FILE__))
|
6
|
+
|
7
|
+
# all tc_*rb in current directory
|
8
|
+
Dir[File.join(this_dir, 'tc_*rb')].each { |file| require file }
|
9
|
+
|
10
|
+
# all ts_*rb in immediate sub-directories
|
11
|
+
Dir[File.join(this_dir, '*', 'ts_*rb')].each { |file| require file }
|
12
|
+
|
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: diagnosticism
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Matt Wilson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: 'Diagnostic facilities, for Ruby
|
14
|
+
|
15
|
+
'
|
16
|
+
email: matthew@synesis.com.au
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- LICENSE
|
22
|
+
- README.md
|
23
|
+
- lib/diagnosticism/version.rb
|
24
|
+
- test/unit/ts_all.rb
|
25
|
+
homepage: http://github.com/synesissoftware/Diagnosticism.Ruby
|
26
|
+
licenses:
|
27
|
+
- BSD-3-Clause
|
28
|
+
metadata: {}
|
29
|
+
post_install_message:
|
30
|
+
rdoc_options: []
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '2.0'
|
38
|
+
- - "<"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
requirements: []
|
47
|
+
rubyforge_project:
|
48
|
+
rubygems_version: 2.7.6.3
|
49
|
+
signing_key:
|
50
|
+
specification_version: 4
|
51
|
+
summary: diagnosticism
|
52
|
+
test_files: []
|