xqsr3 0.31.0 → 0.31.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ff58c82f27bc6fd1a8545651e8ab51778e2f9d2
|
|
4
|
+
data.tar.gz: 23e95fd53cae58e401a32f0523ae8d7fab67116c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 056c6d428ac409faa3d6c9f5293215d2aaa2849b3c94439b3de562cb32cd0fab711953aa2515d061d7809aa7a347a2118ca3950d53514945878276d64869476b
|
|
7
|
+
data.tar.gz: 6797c4746601a996aaa200c50a2cf2ae4827e65c7f07bb7ee160c4ff3fecbe640de8f76e168cd2862bd46147836d719b1b45b51084a78f68c99cff5fc9843cb3
|
data/README.md
CHANGED
|
@@ -69,6 +69,7 @@ Defect reports, feature requests, and pull requests are welcome on https://githu
|
|
|
69
69
|
and a development dependency in:
|
|
70
70
|
|
|
71
71
|
* the **[CLASP.Ruby](https://github.com/synesissoftware/CLASP.Ruby)** library;
|
|
72
|
+
* the **[cmpfs.Ruby](https://github.com/synesissoftware/cmpfs.Ruby)** library;
|
|
72
73
|
* the **[Pantheios.Ruby](https://github.com/synesissoftware/Pantheios.Ruby)** library.
|
|
73
74
|
|
|
74
75
|
### License
|
|
@@ -51,14 +51,14 @@ module Assertions
|
|
|
51
51
|
|
|
52
52
|
ims = type.instance_methods
|
|
53
53
|
|
|
54
|
-
message_spec.each do |sym,
|
|
54
|
+
message_spec.each do |sym, message|
|
|
55
55
|
|
|
56
56
|
unless ims.include? sym
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
message ||= failure_message
|
|
59
|
+
message ||= "type #{type} does not contain the instance method #{sym}"
|
|
60
60
|
|
|
61
|
-
return assert false,
|
|
61
|
+
return assert false, message
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
data/lib/xqsr3/version.rb
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Purpose: Version for Xqsr3 library
|
|
6
6
|
#
|
|
7
7
|
# Created: 3rd April 2016
|
|
8
|
-
# Updated:
|
|
8
|
+
# Updated: 13th March 2019
|
|
9
9
|
#
|
|
10
10
|
# Home: http://github.com/synesissoftware/xqsr3
|
|
11
11
|
#
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
module Xqsr3
|
|
51
51
|
|
|
52
52
|
# Current version of the Xqsr3 library
|
|
53
|
-
VERSION = '0.31.
|
|
53
|
+
VERSION = '0.31.1'
|
|
54
54
|
|
|
55
55
|
private
|
|
56
56
|
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.31.
|
|
4
|
+
version: 0.31.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Wilson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-03-
|
|
11
|
+
date: 2019-03-13 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
|