fat_core 5.5.2 → 5.6.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 +4 -4
- data/README.org +3 -3
- data/lib/fat_core/date.rb +2 -2
- data/lib/fat_core/nil.rb +2 -3
- data/lib/fat_core/string.rb +7 -11
- data/lib/fat_core/symbol.rb +10 -3
- data/lib/fat_core/version.rb +2 -2
- data/spec/lib/range_spec.rb +2 -2
- data/spec/lib/string_spec.rb +9 -5
- data/spec/lib/symbol_spec.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5da3617fdd85e32caebab66239f6aad376c610b3ac48c57fbe2c09ccddabe408
|
4
|
+
data.tar.gz: f1390e8cd9325ba3bc0714af566ad4071bc66ec7d41eb0d93beca01c7260fb55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76b7de64af3d0110838a4a2e4546ceca681c0ef7fadb9cb161a10e359e65d43c39d3ddd36e8b4528323cfe3338991871af4d42d7cf1dd7d915cf5ee3a8bc5208
|
7
|
+
data.tar.gz: f5bdf876c503580ddd19049759a5aa388478695e120b099e22c5a687178e9fc25acb960bcf2e5d59b2a82b00a1cb748fd1155cbada8fca99ff64312d87305a77
|
data/README.org
CHANGED
@@ -503,9 +503,9 @@ so that
|
|
503
503
|
|
504
504
|
FatCore::String has methods for performing matching of one string with another
|
505
505
|
(~#matches_with~, ~#fuzzy_match~), for converting a string to title-case as
|
506
|
-
might by used in the title of a book (~#entitle~), for converting a String
|
507
|
-
a useable Symbol (~#as_sym~) and vice-versa (~#
|
508
|
-
~Symbol#
|
506
|
+
might by used in the title of a book (~#entitle~), for converting a String
|
507
|
+
into a useable Symbol (~#as_sym~) and vice-versa (~#as_str~ also
|
508
|
+
~Symbol#as_str~), for wrapping with an optional hanging indent (~#wrap~),
|
509
509
|
cleaning up errant spaces (~#clean~), and computing the Damerau-Levenshtein
|
510
510
|
distance between strings (~#distance~). And several others.
|
511
511
|
|
data/lib/fat_core/date.rb
CHANGED
@@ -1331,7 +1331,7 @@ module FatCore
|
|
1331
1331
|
nth_wday_in_month?(1, 1, 9)
|
1332
1332
|
when 10
|
1333
1333
|
# Columbus Day (Oct 12) 1909--1953
|
1334
|
-
year
|
1334
|
+
year.between?(1909, 1953) && day == 12
|
1335
1335
|
when 11
|
1336
1336
|
if tuesday?
|
1337
1337
|
# Election Day. Until 1968 all Election Days. From 1972 to 1980
|
@@ -1363,7 +1363,7 @@ module FatCore
|
|
1363
1363
|
end
|
1364
1364
|
elsif day == 11
|
1365
1365
|
# Armistice or Veterans Day. 1918--1921; 1934--1953.
|
1366
|
-
(
|
1366
|
+
year.between?(1918, 1921) || year.between?(1934, 1953)
|
1367
1367
|
else
|
1368
1368
|
false
|
1369
1369
|
end
|
data/lib/fat_core/nil.rb
CHANGED
@@ -2,13 +2,12 @@
|
|
2
2
|
|
3
3
|
module FatCore
|
4
4
|
module NilClass
|
5
|
-
# Allow nils to respond to #
|
5
|
+
# Allow nils to respond to #entitle like String and Symbol
|
6
6
|
#
|
7
7
|
# @return [String] empty string
|
8
|
-
def
|
8
|
+
def entitle
|
9
9
|
''
|
10
10
|
end
|
11
|
-
alias_method :entitle, :as_string
|
12
11
|
|
13
12
|
# Allow nils to respond to #tex_quote for use in TeX documents
|
14
13
|
#
|
data/lib/fat_core/string.rb
CHANGED
@@ -22,28 +22,25 @@ module FatCore
|
|
22
22
|
strip.squeeze(' ')
|
23
23
|
end
|
24
24
|
|
25
|
-
# Convert to a lower-case symbol with all white space
|
26
|
-
# '_' and all non-alphanumerics deleted, such that
|
27
|
-
# an unquoted Symbol.
|
25
|
+
# Convert to a lower-case symbol with all hyphens and white space
|
26
|
+
# converted to a single '_' and all non-alphanumerics deleted, such that
|
27
|
+
# the string will work as an unquoted Symbol.
|
28
28
|
#
|
29
29
|
# @example
|
30
30
|
# "Hello World" -> :hello_world
|
31
31
|
# "Hello*+World" -> :helloworld
|
32
|
+
# "jack-in-the-box" -> :jack_in_the_box
|
32
33
|
#
|
33
34
|
# @return [Symbol] self converted to a Symbol
|
34
35
|
def as_sym
|
35
36
|
clean
|
36
37
|
.gsub(/\s+/, '_')
|
38
|
+
.tr('-', '_')
|
37
39
|
.gsub(/[^_A-Za-z0-9]/, '')
|
38
40
|
.downcase.to_sym
|
39
41
|
end
|
40
42
|
|
41
|
-
|
42
|
-
# Symbol#as_string so that it can be applied to a variable that is either a
|
43
|
-
# String or a Symbol.
|
44
|
-
#
|
45
|
-
# @return [String] self unmodified
|
46
|
-
def as_string
|
43
|
+
def as_str
|
47
44
|
self
|
48
45
|
end
|
49
46
|
|
@@ -117,6 +114,7 @@ module FatCore
|
|
117
114
|
end
|
118
115
|
|
119
116
|
UPPERS = ('A'..'Z').to_a
|
117
|
+
REGEXP_META_CHARACTERS = "\\$()*+.<>?[]^{|}".chars.freeze
|
120
118
|
|
121
119
|
private
|
122
120
|
|
@@ -313,8 +311,6 @@ module FatCore
|
|
313
311
|
matched_text
|
314
312
|
end
|
315
313
|
|
316
|
-
REGEXP_META_CHARACTERS = "\\$()*+.<>?[]^{|}".chars.freeze
|
317
|
-
|
318
314
|
# Convert a string of the form '/.../Iixm' to a regular
|
319
315
|
# expression. However, make the regular expression case-insensitive by
|
320
316
|
# default and extend the modifier syntax to allow '/I' to indicate
|
data/lib/fat_core/symbol.rb
CHANGED
@@ -9,14 +9,12 @@ module FatCore
|
|
9
9
|
#
|
10
10
|
# @example
|
11
11
|
# :hello_world.entitle #=> "Hello World"
|
12
|
-
# :hello_world.as_string #=> "Hello World"
|
13
12
|
# :joy_to_the_world #=> 'Joy to the World'
|
14
13
|
#
|
15
14
|
# @return [String]
|
16
|
-
def
|
15
|
+
def entitle
|
17
16
|
to_s.tr('_', ' ').split.join(' ').entitle
|
18
17
|
end
|
19
|
-
alias_method :entitle, :as_string
|
20
18
|
|
21
19
|
# Return self. This (together with String#as_sym) allows `#as_sym` to be
|
22
20
|
# applied to a string or Symbol and get back a Symbol with out testing for
|
@@ -27,6 +25,15 @@ module FatCore
|
|
27
25
|
self
|
28
26
|
end
|
29
27
|
|
28
|
+
# Convert this symbol to a string in such a manner that for simple cases,
|
29
|
+
# it is the inverse of String#as_sym and vice-versa.
|
30
|
+
def as_str
|
31
|
+
to_s
|
32
|
+
.downcase
|
33
|
+
.tr('_', '-')
|
34
|
+
.gsub(/[^-_A-Za-z0-9]/, '')
|
35
|
+
end
|
36
|
+
|
30
37
|
# Prepare this symbol for use in a TeX document by converting to String then
|
31
38
|
# quoting it.
|
32
39
|
#
|
data/lib/fat_core/version.rb
CHANGED
data/spec/lib/range_spec.rb
CHANGED
@@ -74,10 +74,10 @@ describe Range do
|
|
74
74
|
|
75
75
|
it 'knows the difference with another range' do
|
76
76
|
# Other is same as self
|
77
|
-
#
|
77
|
+
# xrubocop:disable Lint/BinaryOperatorWithIdenticalOperands
|
78
78
|
expect(((4..10) - (4..10)).size).to eq(0)
|
79
79
|
expect(((4..10) - (4..10))).to be_empty
|
80
|
-
#
|
80
|
+
# xrubocop:enable Lint/BinaryOperatorWithIdenticalOperands
|
81
81
|
|
82
82
|
# Other is proper subset of self
|
83
83
|
expect(((4..10) - (6..7)).first).to eq((4..5))
|
data/spec/lib/string_spec.rb
CHANGED
@@ -139,7 +139,7 @@ the people, for the people, shall not perish from the earth."
|
|
139
139
|
expect('-8.008'.number?).to be true
|
140
140
|
expect('8.008e33'.number?).to be true
|
141
141
|
expect('-8.008e33'.number?).to be true
|
142
|
-
expect('0x8.008'
|
142
|
+
expect('0x8.008').to be_number
|
143
143
|
expect('hello world'.number?).to be false
|
144
144
|
end
|
145
145
|
end
|
@@ -192,12 +192,16 @@ the people, for the people, shall not perish from the earth."
|
|
192
192
|
expect('hello world'.as_sym).to eq :hello_world
|
193
193
|
expect("hello world it's me".as_sym).to eq :hello_world_its_me
|
194
194
|
expect('Street1'.as_sym).to eq :street1
|
195
|
+
expect('jack-in-the-box'.as_sym).to eq :jack_in_the_box
|
196
|
+
expect('jack_in-the-box'.as_sym).to eq :jack_in_the_box
|
197
|
+
expect('jack_in_the_box'.as_sym).to eq :jack_in_the_box
|
198
|
+
expect('Jack in the Box'.as_sym).to eq :jack_in_the_box
|
195
199
|
end
|
196
200
|
|
197
|
-
it 'does nothing in response to
|
198
|
-
expect('joke'.
|
199
|
-
expect('hello world'.
|
200
|
-
expect("hello world it's me".
|
201
|
+
it 'does nothing in response to as_str' do
|
202
|
+
expect('joke'.as_str).to eq 'joke'
|
203
|
+
expect('hello world'.as_str).to eq 'hello world'
|
204
|
+
expect("hello world it's me".as_str).to eq "hello world it's me"
|
201
205
|
end
|
202
206
|
|
203
207
|
it 'properly capitalizes a string as a title' do
|
data/spec/lib/symbol_spec.rb
CHANGED
@@ -4,7 +4,7 @@ require 'fat_core/symbol'
|
|
4
4
|
describe Symbol do
|
5
5
|
it 'converts to a capitalized string' do
|
6
6
|
expect(:i_am_a_symbol.entitle).to eq 'I Am a Symbol'
|
7
|
-
|
7
|
+
2
|
8
8
|
end
|
9
9
|
|
10
10
|
it 'responds to tex_quote' do
|
@@ -14,4 +14,10 @@ describe Symbol do
|
|
14
14
|
it 'responds to :as_sym as identity' do
|
15
15
|
expect(:i_am_a_symbol.as_sym).to eq :i_am_a_symbol
|
16
16
|
end
|
17
|
+
|
18
|
+
it 'as_str is the inverse of as_sym for simple cases' do
|
19
|
+
expect('jack-in-the-box'.as_sym.as_str).to eq 'jack-in-the-box'
|
20
|
+
expect('jack_in-the-box'.as_sym.as_str).to eq 'jack-in-the-box'
|
21
|
+
expect('jack_in-the-box'.as_sym.as_str).to eq 'jack-in-the-box'
|
22
|
+
end
|
17
23
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fat_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel E. Doherty
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: activesupport
|