LittleWeasel 5.0.13 → 6.0.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/.github/workflows/ruby.yml +3 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +24 -11
- data/Gemfile.lock +85 -71
- data/LittleWeasel.gemspec +2 -1
- data/README.md +2 -2
- data/lib/LittleWeasel/metadata/invalid_words_metadata.rb +1 -1
- data/lib/LittleWeasel/metadata/invalid_words_service_results.rb +0 -1
- data/lib/LittleWeasel/metadata/metadatable.rb +1 -2
- data/lib/LittleWeasel/version.rb +1 -1
- data/lib/LittleWeasel/word_results.rb +0 -1
- data/spec/lib/LittleWeasel/modules/language_spec.rb +2 -2
- data/spec/lib/LittleWeasel/modules/locale_spec.rb +2 -2
- data/spec/lib/LittleWeasel/modules/region_spec.rb +2 -2
- metadata +18 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7240f9fd6ee98f6bca24c9034cdb7358c06baf77ba0d9412804762f8986d316e
|
4
|
+
data.tar.gz: 33f06418af582e4dd5fe01c7b5025992bd219a556635909e24347edc0901df63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abfdfad0a004717929970d3878892d02aa7638ce8a1bef99ba6d5018ec1b1cb36fcec65ce00ad8ddb88794acad5ddff459d0364d062135aa792db7b5c68af292
|
7
|
+
data.tar.gz: 8d3f47d97010bb924f88d0a3ef06e0ccfe7e44d19187050949b029fd75b434e69d52c5d42824cf399e595c2cf8d4bf3de7e91842d00bf5e98c36325f91802336
|
data/.github/workflows/ruby.yml
CHANGED
@@ -23,7 +23,7 @@ jobs:
|
|
23
23
|
matrix:
|
24
24
|
# Use `rbenv install -l` and only use the latest stable
|
25
25
|
# version of ruby.
|
26
|
-
ruby-version: ["3.
|
26
|
+
ruby-version: ["3.2.8", "3.3.8", "3.4.2"]
|
27
27
|
|
28
28
|
steps:
|
29
29
|
- uses: actions/checkout@v3
|
@@ -33,9 +33,8 @@ jobs:
|
|
33
33
|
run: date
|
34
34
|
- name: Set up Ruby
|
35
35
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
36
|
-
#
|
37
|
-
|
38
|
-
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
|
36
|
+
# see https://github.com/ruby/setup-ruby#versioning.
|
37
|
+
uses: ruby/setup-ruby@v1
|
39
38
|
with:
|
40
39
|
ruby-version: ${{ matrix.ruby-version }}
|
41
40
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4.2
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
### 6.0.0 2025-07-09
|
2
|
+
|
3
|
+
* Breaking changes
|
4
|
+
* Remove support for Ruby versions < 3.2.8.>
|
5
|
+
* Minimum Ruby version is now 3.2.8
|
6
|
+
* Other Changes
|
7
|
+
* Update gems.
|
8
|
+
* Add 'observer' gem to dependencies.
|
9
|
+
|
1
10
|
### 5.0.13 2024-08-03
|
2
11
|
|
3
12
|
* Changes
|
@@ -42,20 +51,24 @@
|
|
42
51
|
* Ruby gem updates.
|
43
52
|
|
44
53
|
### 5.0.4
|
45
|
-
*
|
54
|
+
* Changes
|
46
55
|
* Fix README.md erroneous references to WordResults#successful? (should be #success?)
|
47
56
|
* Gem update.
|
57
|
+
|
48
58
|
### 5.0.3
|
49
|
-
*
|
59
|
+
* Changes
|
50
60
|
* Update gems to patch CVE.
|
61
|
+
|
51
62
|
### 5.0.2
|
52
|
-
*
|
63
|
+
* Changes
|
53
64
|
* Update gems.
|
65
|
+
|
54
66
|
### 5.0.1
|
55
|
-
*
|
67
|
+
* Bug Fix
|
56
68
|
* Fix error loading support files in LittleWeasel.rb.
|
69
|
+
|
57
70
|
### 5.0.0
|
58
|
-
*
|
71
|
+
* Changes
|
59
72
|
* Add spec coverage where lacking.
|
60
73
|
* Remove unused DictionaryLoaderService and associated modules, specs, factories.
|
61
74
|
* Refactor Locale, Language and Region modules to simplify.
|
@@ -63,27 +76,27 @@
|
|
63
76
|
half-baked in 4.0.0.
|
64
77
|
* DeprecateDictionaryCacheService#dictionary_exists? (plural); add typical DeprecateDictionaryCacheService#dictionary_exist? method in its palce.
|
65
78
|
* Update rake gem version to eliminate command injection vulerability.
|
66
|
-
* Change description and summary reflecting 4.0.0
|
79
|
+
* Change description and summary reflecting 4.0.0 Changes.
|
67
80
|
* Various reek gem violation fixes/suppressions where reasonable.
|
68
81
|
* Fix most rubocop violations.
|
69
82
|
|
70
83
|
### 4.0.0
|
71
|
-
*
|
84
|
+
* Enhancements
|
72
85
|
* Complete overhaul; see README.md
|
73
86
|
|
74
87
|
### 3.0.4
|
75
|
-
*
|
88
|
+
* Enhancements
|
76
89
|
* Relax requirements on ruby version to ~> 2.0.
|
77
90
|
|
78
91
|
### 3.0.3
|
79
92
|
|
80
|
-
*
|
93
|
+
* Enhancements
|
81
94
|
* Add single_word_mode option (default: false); when single_word_mode: true, LittleWeasel::Checker.instance.exists? will return false, if more than one word is being checked for existance.
|
82
95
|
|
83
96
|
### 3.0.2
|
84
97
|
|
85
|
-
*
|
98
|
+
* Enhancements
|
86
99
|
* None
|
87
100
|
|
88
|
-
*
|
101
|
+
* Bug Fix
|
89
102
|
* Calling #exists? no longer alters the original input.
|
data/Gemfile.lock
CHANGED
@@ -1,136 +1,150 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
LittleWeasel (
|
4
|
+
LittleWeasel (6.0.0)
|
5
5
|
activesupport (>= 7.0.8, < 8.0)
|
6
|
+
observer (~> 0.1)
|
6
7
|
|
7
8
|
GEM
|
8
9
|
remote: https://rubygems.org/
|
9
10
|
specs:
|
10
|
-
activesupport (7.
|
11
|
+
activesupport (7.2.2.1)
|
11
12
|
base64
|
13
|
+
benchmark (>= 0.3)
|
12
14
|
bigdecimal
|
13
|
-
concurrent-ruby (~> 1.0, >= 1.
|
15
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
14
16
|
connection_pool (>= 2.2.5)
|
15
17
|
drb
|
16
18
|
i18n (>= 1.6, < 2)
|
19
|
+
logger (>= 1.4.2)
|
17
20
|
minitest (>= 5.1)
|
18
|
-
|
19
|
-
tzinfo (~> 2.0)
|
20
|
-
ast (2.4.
|
21
|
-
base64 (0.
|
22
|
-
benchmark
|
23
|
-
|
24
|
-
|
21
|
+
securerandom (>= 0.3)
|
22
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
23
|
+
ast (2.4.3)
|
24
|
+
base64 (0.3.0)
|
25
|
+
benchmark (0.4.1)
|
26
|
+
benchmark-ips (2.14.0)
|
27
|
+
bigdecimal (3.2.2)
|
28
|
+
byebug (12.0.0)
|
25
29
|
coderay (1.1.3)
|
26
|
-
concurrent-ruby (1.3.
|
27
|
-
connection_pool (2.
|
28
|
-
diff-lcs (1.
|
30
|
+
concurrent-ruby (1.3.5)
|
31
|
+
connection_pool (2.5.3)
|
32
|
+
diff-lcs (1.6.2)
|
29
33
|
docile (1.4.1)
|
30
|
-
drb (2.2.
|
31
|
-
dry-configurable (1.
|
32
|
-
dry-core (~> 1.
|
34
|
+
drb (2.2.3)
|
35
|
+
dry-configurable (1.3.0)
|
36
|
+
dry-core (~> 1.1)
|
33
37
|
zeitwerk (~> 2.6)
|
34
|
-
dry-core (1.0
|
38
|
+
dry-core (1.1.0)
|
35
39
|
concurrent-ruby (~> 1.0)
|
40
|
+
logger
|
36
41
|
zeitwerk (~> 2.6)
|
37
|
-
dry-inflector (1.
|
38
|
-
dry-initializer (3.
|
39
|
-
dry-logic (1.
|
42
|
+
dry-inflector (1.2.0)
|
43
|
+
dry-initializer (3.2.0)
|
44
|
+
dry-logic (1.6.0)
|
45
|
+
bigdecimal
|
40
46
|
concurrent-ruby (~> 1.0)
|
41
|
-
dry-core (~> 1.
|
47
|
+
dry-core (~> 1.1)
|
42
48
|
zeitwerk (~> 2.6)
|
43
|
-
dry-schema (1.
|
49
|
+
dry-schema (1.14.1)
|
44
50
|
concurrent-ruby (~> 1.0)
|
45
51
|
dry-configurable (~> 1.0, >= 1.0.1)
|
46
|
-
dry-core (~> 1.
|
47
|
-
dry-initializer (~> 3.
|
48
|
-
dry-logic (
|
49
|
-
dry-types (
|
52
|
+
dry-core (~> 1.1)
|
53
|
+
dry-initializer (~> 3.2)
|
54
|
+
dry-logic (~> 1.5)
|
55
|
+
dry-types (~> 1.8)
|
50
56
|
zeitwerk (~> 2.6)
|
51
|
-
dry-types (1.
|
57
|
+
dry-types (1.8.3)
|
52
58
|
bigdecimal (~> 3.0)
|
53
59
|
concurrent-ruby (~> 1.0)
|
54
60
|
dry-core (~> 1.0)
|
55
61
|
dry-inflector (~> 1.0)
|
56
62
|
dry-logic (~> 1.4)
|
57
63
|
zeitwerk (~> 2.6)
|
58
|
-
factory_bot (6.4
|
59
|
-
activesupport (>=
|
60
|
-
i18n (1.14.
|
64
|
+
factory_bot (6.5.4)
|
65
|
+
activesupport (>= 6.1.0)
|
66
|
+
i18n (1.14.7)
|
61
67
|
concurrent-ruby (~> 1.0)
|
62
|
-
json (2.
|
63
|
-
language_server-protocol (3.17.0.
|
68
|
+
json (2.12.2)
|
69
|
+
language_server-protocol (3.17.0.5)
|
70
|
+
lint_roller (1.1.0)
|
71
|
+
logger (1.7.0)
|
64
72
|
method_source (1.1.0)
|
65
|
-
minitest (5.
|
66
|
-
|
67
|
-
parallel (1.
|
68
|
-
parser (3.3.
|
73
|
+
minitest (5.25.5)
|
74
|
+
observer (0.1.2)
|
75
|
+
parallel (1.27.0)
|
76
|
+
parser (3.3.8.0)
|
69
77
|
ast (~> 2.4.1)
|
70
78
|
racc
|
71
|
-
|
79
|
+
prism (1.4.0)
|
80
|
+
pry (0.15.2)
|
72
81
|
coderay (~> 1.1)
|
73
82
|
method_source (~> 1.0)
|
74
|
-
pry-byebug (3.
|
75
|
-
byebug (~>
|
76
|
-
pry (>= 0.13, < 0.
|
83
|
+
pry-byebug (3.11.0)
|
84
|
+
byebug (~> 12.0)
|
85
|
+
pry (>= 0.13, < 0.16)
|
77
86
|
racc (1.8.1)
|
78
87
|
rainbow (3.1.1)
|
79
|
-
rake (13.
|
80
|
-
redcarpet (3.6.
|
81
|
-
reek (6.
|
82
|
-
dry-schema (~> 1.13
|
88
|
+
rake (13.3.0)
|
89
|
+
redcarpet (3.6.1)
|
90
|
+
reek (6.5.0)
|
91
|
+
dry-schema (~> 1.13)
|
92
|
+
logger (~> 1.6)
|
83
93
|
parser (~> 3.3.0)
|
84
94
|
rainbow (>= 2.0, < 4.0)
|
85
95
|
rexml (~> 3.1)
|
86
|
-
regexp_parser (2.
|
87
|
-
rexml (3.
|
88
|
-
|
89
|
-
rspec (3.13.0)
|
96
|
+
regexp_parser (2.10.0)
|
97
|
+
rexml (3.4.1)
|
98
|
+
rspec (3.13.1)
|
90
99
|
rspec-core (~> 3.13.0)
|
91
100
|
rspec-expectations (~> 3.13.0)
|
92
101
|
rspec-mocks (~> 3.13.0)
|
93
|
-
rspec-core (3.13.
|
102
|
+
rspec-core (3.13.5)
|
94
103
|
rspec-support (~> 3.13.0)
|
95
|
-
rspec-expectations (3.13.
|
104
|
+
rspec-expectations (3.13.5)
|
96
105
|
diff-lcs (>= 1.2.0, < 2.0)
|
97
106
|
rspec-support (~> 3.13.0)
|
98
|
-
rspec-mocks (3.13.
|
107
|
+
rspec-mocks (3.13.5)
|
99
108
|
diff-lcs (>= 1.2.0, < 2.0)
|
100
109
|
rspec-support (~> 3.13.0)
|
101
|
-
rspec-support (3.13.
|
102
|
-
rubocop (1.
|
110
|
+
rspec-support (3.13.4)
|
111
|
+
rubocop (1.78.0)
|
103
112
|
json (~> 2.3)
|
104
|
-
language_server-protocol (
|
113
|
+
language_server-protocol (~> 3.17.0.2)
|
114
|
+
lint_roller (~> 1.1.0)
|
105
115
|
parallel (~> 1.10)
|
106
116
|
parser (>= 3.3.0.2)
|
107
117
|
rainbow (>= 2.2.2, < 4.0)
|
108
|
-
regexp_parser (>= 2.
|
109
|
-
|
110
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
118
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
119
|
+
rubocop-ast (>= 1.45.1, < 2.0)
|
111
120
|
ruby-progressbar (~> 1.7)
|
112
|
-
unicode-display_width (>= 2.4.0, <
|
113
|
-
rubocop-ast (1.
|
114
|
-
parser (>= 3.3.
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
rubocop (
|
121
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
122
|
+
rubocop-ast (1.45.1)
|
123
|
+
parser (>= 3.3.7.2)
|
124
|
+
prism (~> 1.4)
|
125
|
+
rubocop-performance (1.25.0)
|
126
|
+
lint_roller (~> 1.1)
|
127
|
+
rubocop (>= 1.75.0, < 2.0)
|
128
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
129
|
+
rubocop-rspec (3.6.0)
|
130
|
+
lint_roller (~> 1.1)
|
131
|
+
rubocop (~> 1.72, >= 1.72.1)
|
120
132
|
ruby-progressbar (1.13.0)
|
133
|
+
securerandom (0.4.1)
|
121
134
|
simplecov (0.22.0)
|
122
135
|
docile (~> 1.1)
|
123
136
|
simplecov-html (~> 0.11)
|
124
137
|
simplecov_json_formatter (~> 0.1)
|
125
|
-
simplecov-html (0.
|
138
|
+
simplecov-html (0.13.1)
|
126
139
|
simplecov_json_formatter (0.1.4)
|
127
|
-
strscan (3.1.0)
|
128
140
|
tzinfo (2.0.6)
|
129
141
|
concurrent-ruby (~> 1.0)
|
130
|
-
unicode-display_width (
|
131
|
-
|
132
|
-
|
133
|
-
|
142
|
+
unicode-display_width (3.1.4)
|
143
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
144
|
+
unicode-emoji (4.0.4)
|
145
|
+
webrick (1.9.1)
|
146
|
+
yard (0.9.37)
|
147
|
+
zeitwerk (2.7.3)
|
134
148
|
|
135
149
|
PLATFORMS
|
136
150
|
ruby
|
data/LittleWeasel.gemspec
CHANGED
@@ -19,7 +19,8 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
20
|
spec.require_paths = ['lib']
|
21
21
|
|
22
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 3.
|
22
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.2.8', '< 4.0')
|
23
23
|
|
24
24
|
spec.add_runtime_dependency 'activesupport', '>= 7.0.8', '< 8.0'
|
25
|
+
spec.add_runtime_dependency 'observer', '~> 0.1'
|
25
26
|
end
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[](https://github.com/gangelo/LittleWeasel/actions/workflows/ruby.yml)
|
2
|
-
[](https://badge.fury.io/gh/gangelo%2FLittleWeasel)
|
3
|
+
[](https://badge.fury.io/rb/LittleWeasel)
|
4
4
|
[](http://www.rubydoc.info/gems/LittleWeasel/)
|
5
5
|
[](http://www.rubydoc.info/gems/LittleWeasel/)
|
6
6
|
[](https://github.com/gangelo/LittleWeasel/issues)
|
@@ -80,7 +80,7 @@ module LittleWeasel
|
|
80
80
|
|
81
81
|
# This method is called when a word is being searched in the
|
82
82
|
# dictionary.
|
83
|
-
def word_search(params:)
|
83
|
+
def word_search(params:) # rubocop:disable Naming/PredicateMethod
|
84
84
|
word_results = params[:word_results]
|
85
85
|
|
86
86
|
# TODO: NOW: Should we be returning #word_valid? or #success?
|
@@ -10,7 +10,6 @@ module LittleWeasel
|
|
10
10
|
|
11
11
|
def initialize(max_invalid_words_bytesize_on:,
|
12
12
|
current_invalid_word_bytesize:, max_invalid_words_bytesize:)
|
13
|
-
|
14
13
|
self.max_invalid_words_bytesize_on = max_invalid_words_bytesize_on
|
15
14
|
self.current_invalid_word_bytesize = current_invalid_word_bytesize
|
16
15
|
self.max_invalid_words_bytesize = max_invalid_words_bytesize
|
@@ -7,8 +7,7 @@ module LittleWeasel
|
|
7
7
|
module Metadata
|
8
8
|
# This module defines methods to support objects that manage other objects
|
9
9
|
# that manage metadata related to a dictionary/ies.
|
10
|
-
# rubocop: disable Lint/UnusedMethodArgument
|
11
|
-
# module need to keep their argument names because of specs.
|
10
|
+
# rubocop: disable Lint/UnusedMethodArgument -- Methods in this module need to keep their argument names because of specs.
|
12
11
|
module Metadatable
|
13
12
|
def self.included(base)
|
14
13
|
base.extend ClassMethods
|
data/lib/LittleWeasel/version.rb
CHANGED
@@ -37,7 +37,6 @@ module LittleWeasel
|
|
37
37
|
# :reek:BooleanParameter - ignored, boolean params do not determine logic path, but only report status.
|
38
38
|
def initialize(original_word:, filters_matched: [],
|
39
39
|
preprocessed_words: nil, word_cached: false, word_valid: false)
|
40
|
-
|
41
40
|
self.original_word = original_word
|
42
41
|
self.filters_matched = filters_matched
|
43
42
|
self.word_cached = word_cached
|
@@ -59,7 +59,7 @@ RSpec.describe LittleWeasel::Modules::Language, type: :module do
|
|
59
59
|
let(:language) { Object.new }
|
60
60
|
|
61
61
|
it 'raises an error' do
|
62
|
-
expect { subject.normalize_language! }.to raise_error(NoMethodError, /undefined method
|
62
|
+
expect { subject.normalize_language! }.to raise_error(NoMethodError, /undefined method [`|']downcase'/)
|
63
63
|
end
|
64
64
|
end
|
65
65
|
end
|
@@ -105,7 +105,7 @@ RSpec.describe LittleWeasel::Modules::Language, type: :module do
|
|
105
105
|
let(:language) { 1 }
|
106
106
|
|
107
107
|
it 'returns nil' do
|
108
|
-
expect { described_class.normalize_language(language) }.to raise_error(NoMethodError, /undefined method
|
108
|
+
expect { described_class.normalize_language(language) }.to raise_error(NoMethodError, /undefined method [`|']downcase'/)
|
109
109
|
end
|
110
110
|
end
|
111
111
|
end
|
@@ -78,7 +78,7 @@ RSpec.describe LittleWeasel::Modules::Locale, type: :module do
|
|
78
78
|
let(:language) { 1 }
|
79
79
|
|
80
80
|
it 'raises an error' do
|
81
|
-
expect { subject.locale }.to raise_error(NoMethodError, /undefined method
|
81
|
+
expect { subject.locale }.to raise_error(NoMethodError, /undefined method [`|']downcase'/)
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
@@ -87,7 +87,7 @@ RSpec.describe LittleWeasel::Modules::Locale, type: :module do
|
|
87
87
|
let(:region) { 1 }
|
88
88
|
|
89
89
|
it 'raises an error' do
|
90
|
-
expect { subject.locale }.to raise_error(NoMethodError, /undefined method
|
90
|
+
expect { subject.locale }.to raise_error(NoMethodError, /undefined method [`|']upcase'/)
|
91
91
|
end
|
92
92
|
end
|
93
93
|
end
|
@@ -59,7 +59,7 @@ RSpec.describe LittleWeasel::Modules::Region, type: :module do
|
|
59
59
|
let(:region) { Object.new }
|
60
60
|
|
61
61
|
it 'raises an error' do
|
62
|
-
expect { subject.normalize_region! }.to raise_error(NoMethodError, /undefined method
|
62
|
+
expect { subject.normalize_region! }.to raise_error(NoMethodError, /undefined method [`|']upcase'/)
|
63
63
|
end
|
64
64
|
end
|
65
65
|
end
|
@@ -105,7 +105,7 @@ RSpec.describe LittleWeasel::Modules::Region, type: :module do
|
|
105
105
|
let(:region) { 1 }
|
106
106
|
|
107
107
|
it 'returns nil' do
|
108
|
-
expect { described_class.normalize_region(region) }.to raise_error(NoMethodError, /undefined method
|
108
|
+
expect { described_class.normalize_region(region) }.to raise_error(NoMethodError, /undefined method [`|']upcase'/)
|
109
109
|
end
|
110
110
|
end
|
111
111
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: LittleWeasel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gene M. Angelo, Jr.
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-07-10 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -30,6 +29,20 @@ dependencies:
|
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: '8.0'
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: observer
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - "~>"
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0.1'
|
39
|
+
type: :runtime
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - "~>"
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0.1'
|
33
46
|
description: Spellchecker+ with preprocessing and filtering for single and multiple
|
34
47
|
word blocks.
|
35
48
|
email:
|
@@ -207,7 +220,6 @@ homepage: https://github.com/gangelo/LittleWeasel
|
|
207
220
|
licenses:
|
208
221
|
- MIT
|
209
222
|
metadata: {}
|
210
|
-
post_install_message:
|
211
223
|
rdoc_options: []
|
212
224
|
require_paths:
|
213
225
|
- lib
|
@@ -215,7 +227,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
215
227
|
requirements:
|
216
228
|
- - ">="
|
217
229
|
- !ruby/object:Gem::Version
|
218
|
-
version: 3.
|
230
|
+
version: 3.2.8
|
219
231
|
- - "<"
|
220
232
|
- !ruby/object:Gem::Version
|
221
233
|
version: '4.0'
|
@@ -225,8 +237,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
237
|
- !ruby/object:Gem::Version
|
226
238
|
version: '0'
|
227
239
|
requirements: []
|
228
|
-
rubygems_version: 3.2
|
229
|
-
signing_key:
|
240
|
+
rubygems_version: 3.6.2
|
230
241
|
specification_version: 4
|
231
242
|
summary: Checks a word or group of words for validity against a dictionary/ies provided.
|
232
243
|
Word filtering and word preprocessing is available.
|