fat_core 5.5.2 → 5.6.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
  SHA256:
3
- metadata.gz: fed5378f234eb9dffdbfcc63a3520afc343e0879734d990576ac5871059d7bf3
4
- data.tar.gz: eb267ad2fd68502779a921535655b24edc3311cad9a901dc5768b3e3ef41e44c
3
+ metadata.gz: e6cdea468a6e0d1208469b2d079d89694e3f70d62f8c9805e8f7372677430127
4
+ data.tar.gz: bb58238999c2d549e834f28a7dc300be835dbf3b3ef722c92f57480c0c426dd5
5
5
  SHA512:
6
- metadata.gz: 3ad4723ce97c1f7c765be45abafa288b57146f787ce3a355025ddb7b86bbe1f197f0308e9a603753b79589c392e0092dd38c0cec012a973e0da116e35afe6d1d
7
- data.tar.gz: 142bd5d034880bcb2a5418db6a05c38e9a88463294669bb3a823535a8ecd35a1d6878847548fbdbe4edad12e91832099e53f1ffca820d43ee4b93d7dd0950689
6
+ metadata.gz: 685e201065051cf82122aa799e2f08fb5ea44c6e5cccf3a454dd3389dfbb2af8cdf4b0bcffbc5d1e68571af8c9e96328d7272a9eb16ffd14194bd6a2f9a45150
7
+ data.tar.gz: 50c4b04bfb61fd22005add98c38a8cd0b29a8d67a479512dbc08f3c34f35669fbc93d8958a89fc3c8f2807c17935e3a451d4ad9755e0dbfb7cfd30568596c321
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 into
507
- a useable Symbol (~#as_sym~) and vice-versa (~#as_string~ also
508
- ~Symbol#as_string~), for wrapping with an optional hanging indent (~#wrap~),
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 >= 1909 && year <= 1953 && day == 12
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
- (year >= 1918 && year <= 1921) || (year >= 1934 && year <= 1953)
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 #as_string like String and Symbol
5
+ # Allow nils to respond to #entitle like String and Symbol
6
6
  #
7
7
  # @return [String] empty string
8
- def as_string
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
  #
@@ -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 converted to a single
26
- # '_' and all non-alphanumerics deleted, such that the string will work as
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
- # Return self unmodified. This method is here so to comply with the API of
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
@@ -9,22 +9,32 @@ 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 as_string
15
+ def entitle
17
16
  to_s.tr('_', ' ').split.join(' ').entitle
18
17
  end
19
- alias_method :entitle, :as_string
20
18
 
21
- # Return self. This (together with String#as_sym) allows `#as_sym` to be
22
- # applied to a string or Symbol and get back a Symbol with out testing for
23
- # type.
19
+ # Return self in a form suitable as an identifier. Ruby allows symbols to
20
+ # have arbitrary characters in them that are not permitted as an
21
+ # identifier. Convert this symbol to one that is a legal identifier. This
22
+ # (together with String#as_sym) allows `#as_sym` to be applied to a string
23
+ # or Symbol and get back a Symbol with out testing for type.
24
24
  #
25
25
  # @return [Symbol] just self
26
26
  def as_sym
27
- self
27
+ as_str.as_sym
28
+ end
29
+
30
+ # Convert this symbol to a string in such a manner that for simple cases,
31
+ # it is the inverse of String#as_sym and vice-versa.
32
+ def as_str
33
+ to_s
34
+ .downcase
35
+ .tr('_', '-')
36
+ .gsub(/\s+/, '_')
37
+ .gsub(/[^-_A-Za-z0-9]/, '')
28
38
  end
29
39
 
30
40
  # Prepare this symbol for use in a TeX document by converting to String then
@@ -2,8 +2,8 @@
2
2
 
3
3
  module FatCore
4
4
  MAJOR = 5
5
- MINOR = 5
6
- PATCH = 2
5
+ MINOR = 6
6
+ PATCH = 1
7
7
 
8
8
  # FatCore version number
9
9
  VERSION = [MAJOR, MINOR, PATCH].compact.join('.')
@@ -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
- # rubocop:disable Lint/BinaryOperatorWithIdenticalOperands
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
- # rubocop:enable Lint/BinaryOperatorWithIdenticalOperands
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))
@@ -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'.number?).to be_truthy
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,17 @@ 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
199
+ expect("Four Score \t\n and 7 years ago".as_sym).to eq :four_score_and_7_years_ago
195
200
  end
196
201
 
197
- it 'does nothing in response to as_string' do
198
- expect('joke'.as_string).to eq 'joke'
199
- expect('hello world'.as_string).to eq 'hello world'
200
- expect("hello world it's me".as_string).to eq "hello world it's me"
202
+ it 'does nothing in response to as_str' do
203
+ expect('joke'.as_str).to eq 'joke'
204
+ expect('hello world'.as_str).to eq 'hello world'
205
+ expect("hello world it's me".as_str).to eq "hello world it's me"
201
206
  end
202
207
 
203
208
  it 'properly capitalizes a string as a title' do
@@ -4,14 +4,25 @@ 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
- expect(:i_am_a_symbol.as_string).to eq 'I Am a Symbol'
7
+ 2
8
8
  end
9
9
 
10
10
  it 'responds to tex_quote' do
11
11
  expect(:i_am_a_symbol.tex_quote).to eq 'i\\_am\\_a\\_symbol'
12
12
  end
13
13
 
14
- it 'responds to :as_sym as identity' do
14
+ it 'return self :as_sym as a symbol but also a legal identifier' do
15
15
  expect(:i_am_a_symbol.as_sym).to eq :i_am_a_symbol
16
+ expect(:'i-am-a_symbol'.as_sym).to eq :i_am_a_symbol
17
+ expect(:'Four Score and 7 years ago'.as_sym).to eq :four_score_and_7_years_ago
18
+ expect(:four_score_and_7_years_ago.as_sym).to eq :four_score_and_7_years_ago
19
+ end
20
+
21
+ it 'as_str is the inverse of as_sym for simple cases' do
22
+ expect('jack-in-the-box'.as_sym.as_str).to eq 'jack-in-the-box'
23
+ expect('jack_in-the-box'.as_sym.as_str).to eq 'jack-in-the-box'
24
+ expect('jack_in-the-box'.as_sym.as_str).to eq 'jack-in-the-box'
25
+ expect(:four_score_and_7_years_ago.as_str).to eq 'four-score-and-7-years-ago'
26
+ expect(:four_score_and_7_years_ago.as_str.as_sym).to eq :four_score_and_7_years_ago
16
27
  end
17
28
  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.5.2
4
+ version: 5.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel E. Doherty
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-23 00:00:00.000000000 Z
10
+ date: 2025-03-19 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: activesupport