xqsr3 0.39.3 → 0.39.3.1
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/README.md +8 -5
- data/lib/xqsr3/version.rb +3 -3
- data/test/unit/quality/tc_parameter_checking.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dd39b2f95697c84c5d7e599dd3feb956883e0d5950ed9d2894e9ef5829a0e53
|
4
|
+
data.tar.gz: ab426c419cd34a2c44ee75b3e866b40d34cbd4c33873fd343ca468460652de4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcbb5b6926e7c4fb9c0763b081e473fa5c77ff7f1ae76b371e375b3b82fdc629180fc414fe3aa242599352ddaecbabcd26af759c50960b71618456f19ce5c0a9
|
7
|
+
data.tar.gz: 2208ff7f78a3db75dd7262a3e5849c4534b02a4ae923a5d48e7a66ed516c4d702a101d1419eb437a7868c7526d7fce7be011213a1d97279ce7cd86c10e18f0c9
|
data/README.md
CHANGED
@@ -19,10 +19,10 @@ It may be pronounced (lamely) as "excusers".
|
|
19
19
|
- [Components](#components)
|
20
20
|
- [Examples](#examples)
|
21
21
|
- [Project Information](#project-information)
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
- [Where to get help](#where-to-get-help)
|
23
|
+
- [Contribution guidelines](#contribution-guidelines)
|
24
|
+
- [Related projects](#related-projects)
|
25
|
+
- [License](#license)
|
26
26
|
|
27
27
|
## Installation
|
28
28
|
|
@@ -42,7 +42,7 @@ require 'xqsr3/containers/frequency_map'
|
|
42
42
|
```
|
43
43
|
|
44
44
|
Alternatively, to use all **test/unit** extensions you would ``require`` all
|
45
|
-
|
45
|
+
relative via the file:
|
46
46
|
|
47
47
|
```Ruby
|
48
48
|
require 'xqsr3/extensions/test/unit'
|
@@ -96,14 +96,17 @@ Defect reports, feature requests, and pull requests are welcome on https://githu
|
|
96
96
|
**xqsr3** is a runtime dependency of:
|
97
97
|
|
98
98
|
* the **[libCLImate.Ruby](https://github.com/synesissoftware/libCLImate.Ruby)** library;
|
99
|
+
* the **[comment_strip-ruby](https://github.com/synesissoftware/comment_strip.r)** library;
|
99
100
|
* the [**xqsr3-xml**](https://github.com/synesissoftware.com/xqsr3-xml/) library.
|
100
101
|
|
101
102
|
and a development dependency of:
|
102
103
|
|
103
104
|
* the **[CLASP.Ruby](https://github.com/synesissoftware/CLASP.Ruby)** library;
|
104
105
|
* the **[cmpfs.Ruby](https://github.com/synesissoftware/cmpfs.Ruby)** library;
|
106
|
+
* the **[Diagnosticism.Ruby](https://github.com/synesissoftware/Diagnosticism.Ruby)** library;
|
105
107
|
* the **[libpath.Ruby](https://github.com/synesissoftware/libpath.Ruby)** library;
|
106
108
|
* the **[Pantheios.Ruby](https://github.com/synesissoftware/Pantheios.Ruby)** library.
|
109
|
+
* the **[recls.Ruby](https://github.com/synesissoftware/recls.Ruby)** library;
|
107
110
|
* the **[Quench.Ruby](https://github.com/synesissoftware/Quench.Ruby)** library.
|
108
111
|
|
109
112
|
### License
|
data/lib/xqsr3/version.rb
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
# Purpose: Version for Xqsr3 library
|
6
6
|
#
|
7
7
|
# Created: 3rd April 2016
|
8
|
-
# Updated:
|
8
|
+
# Updated: 6th March 2025
|
9
9
|
#
|
10
10
|
# Home: http://github.com/synesissoftware/xqsr3
|
11
11
|
#
|
12
12
|
# Author: Matthew Wilson
|
13
13
|
#
|
14
|
-
# Copyright (c) 2019-
|
14
|
+
# Copyright (c) 2019-2025, Matthew Wilson and Synesis Information Systems
|
15
15
|
# Copyright (c) 2016-2019, Matthew Wilson and Synesis Software
|
16
16
|
# All rights reserved.
|
17
17
|
#
|
@@ -51,7 +51,7 @@
|
|
51
51
|
module Xqsr3
|
52
52
|
|
53
53
|
# Current version of the Xqsr3 library
|
54
|
-
VERSION = '0.39.3'
|
54
|
+
VERSION = '0.39.3.1'
|
55
55
|
|
56
56
|
private
|
57
57
|
VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xqsr3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.39.3
|
4
|
+
version: 0.39.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Wilson
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
eXtensions by fine Quantum for Standard Ruby and 3rd-party libraries is a
|
@@ -160,7 +160,7 @@ homepage: http://github.com/synesissoftware/xqsr3
|
|
160
160
|
licenses:
|
161
161
|
- BSD-3-Clause
|
162
162
|
metadata: {}
|
163
|
-
post_install_message:
|
163
|
+
post_install_message:
|
164
164
|
rdoc_options: []
|
165
165
|
require_paths:
|
166
166
|
- lib
|
@@ -178,9 +178,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
178
|
- !ruby/object:Gem::Version
|
179
179
|
version: '0'
|
180
180
|
requirements: []
|
181
|
-
|
182
|
-
|
183
|
-
signing_key:
|
181
|
+
rubygems_version: 3.2.15
|
182
|
+
signing_key:
|
184
183
|
specification_version: 4
|
185
184
|
summary: xqsr3
|
186
185
|
test_files: []
|