xqsr3 0.31.1 → 0.31.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.
- checksums.yaml +4 -4
- data/lib/xqsr3/array_utilities/join_with_or.rb +4 -2
- data/lib/xqsr3/string_utilities/ends_with.rb +4 -2
- data/lib/xqsr3/string_utilities/nil_if_empty.rb +4 -2
- data/lib/xqsr3/string_utilities/nil_if_whitespace.rb +4 -2
- data/lib/xqsr3/string_utilities/quote_if.rb +4 -2
- data/lib/xqsr3/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ee411febd1aacd76190a4d3032cd5a8ed0e5376
|
|
4
|
+
data.tar.gz: 4fe4ff7827e9c0aa08c2e036a02db5c1ea197601
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbb6ff8feb168e0c7f28d1d32fccd4933dd96943c583f897a58e40a31b7bcd3cee62734e6f08a8471901f151c4a1a5cbcf8e730377f36579d42f11573d6210ed
|
|
7
|
+
data.tar.gz: 567578a5041f37710becf55c78857526e88e0c7720c9c8be3fe82c7da366a57521b1d2642e5c31443d676e9261695a8d1b2d2599496a927772c7bc56ac7d5d54
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# module
|
|
7
7
|
#
|
|
8
8
|
# Created: 7th December 2017
|
|
9
|
-
# Updated:
|
|
9
|
+
# Updated: 10th April 2019
|
|
10
10
|
#
|
|
11
11
|
# Home: http://github.com/synesissoftware/xqsr3
|
|
12
12
|
#
|
|
@@ -62,7 +62,9 @@ module JoinWithOr
|
|
|
62
62
|
|
|
63
63
|
# Joins an array with grammatical appropriateness (with an 'or')
|
|
64
64
|
#
|
|
65
|
-
# ===
|
|
65
|
+
# === Signature
|
|
66
|
+
#
|
|
67
|
+
# * *Parameters*
|
|
66
68
|
#
|
|
67
69
|
# * *Required parameters*:
|
|
68
70
|
# - +ar+:: [Array] The array whose contents are to be joined
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# module
|
|
7
7
|
#
|
|
8
8
|
# Created: 13th April 2016
|
|
9
|
-
# Updated: 10th
|
|
9
|
+
# Updated: 10th April 2019
|
|
10
10
|
#
|
|
11
11
|
# Home: http://github.com/synesissoftware/xqsr3
|
|
12
12
|
#
|
|
@@ -112,7 +112,9 @@ module EndsWith
|
|
|
112
112
|
# Reports on whether a string +s+ ends with a given prefix or set of
|
|
113
113
|
# prefixes (+args+)
|
|
114
114
|
#
|
|
115
|
-
# ===
|
|
115
|
+
# === Signature
|
|
116
|
+
#
|
|
117
|
+
# * *Parameters*
|
|
116
118
|
#
|
|
117
119
|
# * *Required parameters*:
|
|
118
120
|
# - +s+:: [String] The string to be evaluated
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# module
|
|
7
7
|
#
|
|
8
8
|
# Created: 25th January 2018
|
|
9
|
-
# Updated:
|
|
9
|
+
# Updated: 10th April 2019
|
|
10
10
|
#
|
|
11
11
|
# Home: http://github.com/synesissoftware/xqsr3
|
|
12
12
|
#
|
|
@@ -71,7 +71,9 @@ module NilIfEmpty
|
|
|
71
71
|
# Returns +nil+ if the given string is empty, otherwise returning the
|
|
72
72
|
# given string
|
|
73
73
|
#
|
|
74
|
-
# ===
|
|
74
|
+
# === Signature
|
|
75
|
+
#
|
|
76
|
+
# * *Parameters*
|
|
75
77
|
#
|
|
76
78
|
# * *Required parameters*:
|
|
77
79
|
# - +s+:: [String] The string to be evaluated
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# module
|
|
7
7
|
#
|
|
8
8
|
# Created: 25th January 2018
|
|
9
|
-
# Updated:
|
|
9
|
+
# Updated: 10th April 2019
|
|
10
10
|
#
|
|
11
11
|
# Home: http://github.com/synesissoftware/xqsr3
|
|
12
12
|
#
|
|
@@ -71,7 +71,9 @@ module NilIfWhitespace
|
|
|
71
71
|
# Returns +nil+ if the given string is empty or contains only whitespace,
|
|
72
72
|
# otherwise returning the given string
|
|
73
73
|
#
|
|
74
|
-
# ===
|
|
74
|
+
# === Signature
|
|
75
|
+
#
|
|
76
|
+
# * *Parameters*
|
|
75
77
|
#
|
|
76
78
|
# * *Required parameters*:
|
|
77
79
|
# - +s+:: [String] The string to be evaluated
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# module
|
|
7
7
|
#
|
|
8
8
|
# Created: 3rd June 2017
|
|
9
|
-
# Updated:
|
|
9
|
+
# Updated: 10th April 2019
|
|
10
10
|
#
|
|
11
11
|
# Home: http://github.com/synesissoftware/xqsr3
|
|
12
12
|
#
|
|
@@ -90,7 +90,9 @@ module QuoteIf
|
|
|
90
90
|
|
|
91
91
|
# Converts a string to a quoted form if necessary
|
|
92
92
|
#
|
|
93
|
-
# ===
|
|
93
|
+
# === Signature
|
|
94
|
+
#
|
|
95
|
+
# * *Parameters*
|
|
94
96
|
#
|
|
95
97
|
# * *Required parameters*:
|
|
96
98
|
# - +s+:: [String] The string to be evaluated
|
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: 10th April 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.2'
|
|
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.2
|
|
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-
|
|
11
|
+
date: 2019-04-11 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
|