scoped_search 4.2.0 → 4.3.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: 958718e625d5bbb80f93ea868abebac96d29a54e712c6c0275f9e6a1e44e07d3
4
- data.tar.gz: 90f57db3c2009746a0beb9d843bee7a46d55d1b0ef02d796c12490d7b3e7f1b8
3
+ metadata.gz: 2413a0e2075ccff25188af0a579df4b8cfde593f38ab801b99bd7379b2344c8b
4
+ data.tar.gz: edc1ec5d32cc2b410fdf9938e49aca0cfba46807850491c3ee6bba28642dfc5b
5
5
  SHA512:
6
- metadata.gz: 2cc38b0ce04452df7b7205465621c0624d1173c9e9a95eb849f50eaa99fdcad9545a7411aec5fae2a3c787f348a3f440244c54e8623a3ed2589d47735110ef8b
7
- data.tar.gz: 60ebb019e199a50505e0e934a1e2fd405a03c903350554c8f13ca62f85c5acc472b073a6bf1ebcdb1f44b15c54ec593dc31b9bf474782ff739803a0d94f43e81
6
+ metadata.gz: 4a31a5e76daac85ca7b36cff7fdf38a377258401f38da13fb789afb1d6ca55e01331ce88c78136e7bc4efc64704e59460de267b50bfd8dc47e479c881e2b84b7
7
+ data.tar.gz: 87d273283f63fbc83afb0ab29f163a5625f0fc074c551c5220f004eb902c43a407973bf5470395c90442666ff14e1a69b1b0e7b8aba653c997d180da969429ee
data/CHANGELOG.rdoc CHANGED
@@ -6,6 +6,16 @@ Please add an entry to the "Unreleased changes" section in your pull requests.
6
6
 
7
7
  === Unreleased changes
8
8
 
9
+ === Version 4.3.1
10
+ - Autocomplete now offers only relevant options available through scopes set on associations (#233)
11
+
12
+ === Version 4.3.0
13
+
14
+ - Prevent scoped_search from modifying an empty string on newer rubies (#229)
15
+ - Autocomplete now wraps all strings in quotes, not just those containing whitespace (#230)
16
+ - UUID search is now case insensitive (#232)
17
+ - Autocomplete now honors scopes set on associations (#231)
18
+
9
19
  === Version 4.1.10
10
20
 
11
21
  - Fix querying through associations in Rails 6.1 (undefined method join_keys) (#201)
@@ -207,6 +207,7 @@ module ScopedSearch
207
207
 
208
208
  def complete_value_from_db(field, special_values, val)
209
209
  count = 20 - special_values.count
210
+
210
211
  completer_scope(field)
211
212
  .where(@options[:value_filter])
212
213
  .where(value_conditions(field.quoted_field, val))
@@ -215,12 +216,20 @@ module ScopedSearch
215
216
  .distinct
216
217
  .map(&field.field)
217
218
  .compact
218
- .map { |v| v.to_s =~ /\s/ ? "\"#{v.gsub('"', '\"')}\"" : v }
219
+ .map { |v| v.is_a?(String) ? "\"#{v.gsub('"', '\"')}\"" : v }
219
220
  end
220
221
 
221
222
  def completer_scope(field)
222
- klass = field.klass
223
- scope = klass.respond_to?(:completer_scope) ? klass.completer_scope(@options) : klass
223
+ scope = field.klass
224
+ scope = scope.completer_scope(@options) if scope.respond_to?(:completer_scope)
225
+
226
+ if field.klass != field.definition.klass
227
+ reflection = field.definition.reflection_by_name(field.definition.klass, field.relation)
228
+ sub_scope = reflection.active_record.joins(reflection.name)
229
+ sub_scope = sub_scope.select("#{field.klass.table_name}.#{field.klass.primary_key}")
230
+ scope = scope.where(field.klass.primary_key => sub_scope)
231
+ end
232
+
224
233
  scope.respond_to?(:reorder) ? scope.reorder(Arel.sql(field.quoted_field)) : scope.scoped(:order => field.quoted_field)
225
234
  end
226
235
 
@@ -260,7 +260,7 @@ module ScopedSearch
260
260
 
261
261
  NUMERICAL_REGXP = /^\-?\d+(\.\d+)?$/
262
262
  INTEGER_REGXP = /^\-?\d+$/
263
- UUID_REGXP = /^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$/
263
+ UUID_REGXP = /^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$/i
264
264
 
265
265
  # Returns a list of appropriate fields to search in given a search keyword and operator.
266
266
  def default_fields_for(value, operator = nil)
@@ -69,7 +69,7 @@ module ScopedSearch::QueryLanguage::Tokenizer
69
69
  # Tokenizes a keyword that is quoted using double quotes. Allows escaping
70
70
  # of double quote characters by backslashes.
71
71
  def tokenize_quoted_keyword(&block)
72
- keyword = ""
72
+ keyword = String.new
73
73
  until next_char.nil? || current_char == '"'
74
74
  keyword << (current_char == "\\" ? next_char : current_char)
75
75
  end
@@ -1,3 +1,3 @@
1
1
  module ScopedSearch
2
- VERSION = "4.2.0"
2
+ VERSION = "4.3.1"
3
3
  end
@@ -41,6 +41,20 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
41
41
  end
42
42
  end
43
43
 
44
+ ActiveRecord::Migration.create_table(:bazs, :force => true) do |t|
45
+ t.integer :foo_id
46
+ end
47
+
48
+ ActiveRecord::Migration.create_table(:asds, :force => true) do |t|
49
+ t.integer :baz_id
50
+ t.string :string
51
+ end
52
+
53
+ ActiveRecord::Migration.create_table(:qwes, :force => true) do |t|
54
+ t.integer :asd_id
55
+ t.string :string
56
+ end
57
+
44
58
  class ::Bar < ActiveRecord::Base
45
59
  belongs_to :foo
46
60
  end
@@ -65,28 +79,63 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
65
79
  scoped_search :on => :other_c, :relation => :bars, :rename => 'bars.other_c'.to_sym
66
80
  end
67
81
 
82
+ class ::Baz < ActiveRecord::Base
83
+ belongs_to :foo, -> { where(string: 'foo') }
84
+ has_one :asd, -> { where(string: 'foo') }
85
+ has_one :qwe, through: :asd
86
+
87
+ scoped_search :on => :string, :relation => :foo, :complete_value => true, :rename => 'foos.string'.to_sym
88
+ scoped_search :on => :string, :relation => :asd, :complete_value => true, :rename => 'asds.string'.to_sym
89
+ scoped_search :on => :string, :relation => :qwe, :complete_value => true, :rename => 'qwes.string'.to_sym
90
+ end
91
+
68
92
  class ::Infoo < ::Foo
69
93
  end
70
94
 
95
+ class ::Asd < ActiveRecord::Base
96
+ belongs_to :baz
97
+ has_one :qwe
98
+ end
99
+
100
+ class ::Qwe < ActiveRecord::Base
101
+ belongs_to :asd
102
+ end
103
+
71
104
  @qux_1 = Qux.create!()
72
105
  @qux_2 = Qux.create!()
73
106
  @foo_1 = Foo.create!(:string => 'foo', :another => 'temp 1', :explicit => 'baz', :int => 9 , :date => 'February 8, 2011' , :unindexed => 10, :qux => @qux_1)
74
107
  @foo_2 = Foo.create!(:string => 'foo', :another => 'temp 2', :explicit => 'baz', :int => 10 , :date => 'February 8, 2011' , :unindexed => 10, :qux => @qux_2)
75
- Foo.create!(:string => 'bar', :another => 'temp "2"', :explicit => 'baz', :int => 22 , :date => 'February 10, 2011', :unindexed => 10)
108
+ @foo_3 = Foo.create!(:string => 'bar', :another => 'temp "2"', :explicit => 'baz', :int => 22 , :date => 'February 10, 2011', :unindexed => 10)
76
109
  Foo.create!(:string => 'baz', :another => nil, :explicit => nil , :int => nil, :date => nil , :unindexed => nil)
77
110
  20.times { Foo.create!(:explicit => "aaa") }
78
111
 
112
+ @baz_1 = Baz.create!(:foo => @foo_1)
113
+ @baz_2 = Baz.create!(:foo => @foo_2)
114
+ Baz.create!(:foo => @foo_3)
115
+
79
116
  Bar.create!(:related => 'lala', :foo => @foo_1)
80
117
  Bar.create!(:related => 'another lala', :foo => @foo_1)
118
+
119
+ @asd_1 = Asd.create!(:string => 'foo', :baz => @baz_1)
120
+ @asd_2 = Asd.create!(:string => 'bar', :baz => @baz_2)
121
+ Qwe.create!(:asd => @asd_1, :string => 'qwe1')
122
+ Qwe.create!(:asd => @asd_2, :string => 'qwe2')
81
123
  end
82
124
 
83
125
  after(:all) do
84
126
  ActiveRecord::Migration.drop_table(:foos)
85
127
  ActiveRecord::Migration.drop_table(:bars)
128
+ ActiveRecord::Migration.drop_table(:bazs)
129
+ ActiveRecord::Migration.drop_table(:asds)
130
+ ActiveRecord::Migration.drop_table(:qwes)
86
131
 
87
132
  Object.send :remove_const, :Foo
88
133
  Object.send :remove_const, :Bar
134
+ Object.send :remove_const, :Baz
135
+ Object.send :remove_const, :Qux
89
136
  Object.send :remove_const, :Infoo
137
+ Object.send :remove_const, :Asd
138
+ Object.send :remove_const, :Qwe
90
139
 
91
140
  ScopedSearch::RSpec::Database.close_connection
92
141
  end
@@ -169,10 +218,10 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
169
218
  end
170
219
 
171
220
  it "should complete values should contain baz" do
172
- Foo.complete_for('explicit = ').should contain('explicit = baz')
221
+ Foo.complete_for('explicit = ').should contain('explicit = "baz"')
173
222
  end
174
223
 
175
- it "should complete values with quotes where required" do
224
+ it "should complete values with quotes where value is a string" do
176
225
  Foo.complete_for('alias = ').should contain('alias = "temp \"2\""')
177
226
  end
178
227
  end
@@ -267,5 +316,15 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
267
316
  Foo.complete_for('int =', value_filter: { qux_id: 99 }).should == []
268
317
  end
269
318
  end
319
+
320
+ context 'autocompleting with scopes' do
321
+ it 'should honor the scope' do
322
+ Baz.complete_for('foos.string =').should == ['foos.string = "foo"']
323
+ end
324
+
325
+ it 'should honor scope on the through relation' do
326
+ Baz.complete_for('qwes.string =').should == ['qwes.string = "qwe1"']
327
+ end
328
+ end
270
329
  end
271
330
  end
@@ -249,13 +249,13 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
249
249
  before do
250
250
 
251
251
  # Create some tables
252
- ActiveRecord::Migration.create_table(:mars) { |t| t.integer :koo_id; t.integer :baz_id }
253
- ActiveRecord::Migration.create_table(:bazs) { |t| t.string :related }
252
+ ActiveRecord::Migration.create_table(:mars) { |t| t.integer :koo_id; t.integer :zab_id }
253
+ ActiveRecord::Migration.create_table(:zabs) { |t| t.string :related }
254
254
  ActiveRecord::Migration.create_table(:koos) { |t| t.string :foo }
255
255
 
256
256
  # The related classes
257
- class Mar < ActiveRecord::Base; belongs_to :baz; belongs_to :koo; end
258
- class Baz < ActiveRecord::Base; has_many :mars; end
257
+ class Mar < ActiveRecord::Base; belongs_to :zab; belongs_to :koo; end
258
+ class Zab < ActiveRecord::Base; has_many :mars; end
259
259
 
260
260
  # The class on which to call search_for
261
261
  class Koo < ActiveRecord::Base
@@ -263,38 +263,38 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
263
263
  # having the source option here is not needed for the statement correctness.
264
264
  # It is here to fail the code introduced in 2.6.2 that wrongly detected source instead of source_type
265
265
  # as an indication for a polymorphic relation.
266
- has_many :bazs, :through => :mars, :source => :baz
266
+ has_many :zabs, :through => :mars, :source => :zab
267
267
 
268
- scoped_search :relation => :bazs, :on => :related
268
+ scoped_search :relation => :zabs, :on => :related
269
269
  end
270
270
 
271
271
  @koo_1 = Koo.create!(:foo => 'foo')
272
272
  @koo_2 = Koo.create!(:foo => 'foo too')
273
273
  @koo_3 = Koo.create!(:foo => 'foo three')
274
274
 
275
- @baz_1 = Baz.create(:related => 'baz')
276
- @baz_2 = Baz.create(:related => 'baz too!')
275
+ @zab_1 = Zab.create(:related => 'zab')
276
+ @zab_2 = Zab.create(:related => 'zab too!')
277
277
 
278
- @bar_1 = Mar.create!(:koo => @koo_1, :baz => @baz_1)
278
+ @bar_1 = Mar.create!(:koo => @koo_1, :zab => @zab_1)
279
279
  @bar_2 = Mar.create!(:koo => @koo_1)
280
- @bar_3 = Mar.create!(:koo => @koo_2, :baz => @baz_1)
281
- @bar_3 = Mar.create!(:koo => @koo_2, :baz => @baz_2)
282
- @bar_3 = Mar.create!(:koo => @koo_2, :baz => @baz_2)
280
+ @bar_3 = Mar.create!(:koo => @koo_2, :zab => @zab_1)
281
+ @bar_3 = Mar.create!(:koo => @koo_2, :zab => @zab_2)
282
+ @bar_3 = Mar.create!(:koo => @koo_2, :zab => @zab_2)
283
283
  @bar_4 = Mar.create!(:koo => @koo_3)
284
284
  end
285
285
 
286
286
  after do
287
- ActiveRecord::Migration.drop_table(:bazs)
287
+ ActiveRecord::Migration.drop_table(:zabs)
288
288
  ActiveRecord::Migration.drop_table(:mars)
289
289
  ActiveRecord::Migration.drop_table(:koos)
290
290
  end
291
291
 
292
- it "should find the two records that are related to a baz record" do
293
- Koo.search_for('baz').length.should == 2
292
+ it "should find the two records that are related to a zab record" do
293
+ Koo.search_for('zab').length.should == 2
294
294
  end
295
295
 
296
- it "should find the two records that are related to a baz record" do
297
- Koo.search_for('related=baz AND related="baz too!"').length.should == 1
296
+ it "should find the two records that are related to a zab record" do
297
+ Koo.search_for('related=zab AND related="zab too!"').length.should == 1
298
298
  end
299
299
  end
300
300
 
@@ -303,27 +303,27 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
303
303
  before do
304
304
 
305
305
  # Create some tables
306
- ActiveRecord::Migration.create_table(:zars) { |t| t.integer :baz_id }
307
- ActiveRecord::Migration.create_table(:bazs) { |t| t.string :related }
306
+ ActiveRecord::Migration.create_table(:zars) { |t| t.integer :zab_id }
307
+ ActiveRecord::Migration.create_table(:zabs) { |t| t.string :related }
308
308
  ActiveRecord::Migration.create_table(:zoos) { |t| t.integer :zar_id; t.string :foo }
309
309
 
310
310
  # The related classes
311
- class Zar < ActiveRecord::Base; belongs_to :baz; has_many :zoos; end
312
- class Baz < ActiveRecord::Base; has_many :zars; end
311
+ class Zar < ActiveRecord::Base; belongs_to :zab; has_many :zoos; end
312
+ class Zab < ActiveRecord::Base; has_many :zars; end
313
313
 
314
314
  # The class on which to call search_for
315
315
  class Zoo < ActiveRecord::Base
316
316
  belongs_to :zar
317
- has_many :bazs, :through => :zar
317
+ has_many :zabs, :through => :zar
318
318
 
319
- scoped_search :relation => :bazs, :on => :related
319
+ scoped_search :relation => :zabs, :on => :related
320
320
  end
321
321
 
322
- baz_1 = Baz.create(:related => 'baz')
323
- baz_2 = Baz.create(:related => 'baz too!')
322
+ zab_1 = Zab.create(:related => 'zab')
323
+ zab_2 = Zab.create(:related => 'zab too!')
324
324
 
325
- zar_1 = Zar.create!( :baz => baz_1)
326
- zar_2 = Zar.create!( :baz => baz_2)
325
+ zar_1 = Zar.create!( :zab => zab_1)
326
+ zar_2 = Zar.create!( :zab => zab_2)
327
327
 
328
328
  Zoo.create!(:zar => zar_1, :foo => 'foo')
329
329
  Zoo.create!(:zar => zar_1, :foo => 'foo too')
@@ -331,17 +331,17 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
331
331
  end
332
332
 
333
333
  after do
334
- ActiveRecord::Migration.drop_table(:bazs)
334
+ ActiveRecord::Migration.drop_table(:zabs)
335
335
  ActiveRecord::Migration.drop_table(:zars)
336
336
  ActiveRecord::Migration.drop_table(:zoos)
337
337
  end
338
338
 
339
- it "should find the three records that are related to a baz record" do
340
- Zoo.search_for('baz').length.should == 3
339
+ it "should find the three records that are related to a zab record" do
340
+ Zoo.search_for('zab').length.should == 3
341
341
  end
342
342
 
343
- it "should find no records that are related to a baz record" do
344
- Zoo.search_for('related=baz AND related="baz too!"').length.should == 0
343
+ it "should find no records that are related to a zab record" do
344
+ Zoo.search_for('related=zab AND related="zab too!"').length.should == 0
345
345
  end
346
346
  end
347
347
 
@@ -392,8 +392,8 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
392
392
  @tag_2 = Tag.create!(:foo => 'foo too')
393
393
  @tag_3 = Tag.create!(:foo => 'foo three')
394
394
 
395
- @dog_1 = Dog.create(:related => 'baz')
396
- @dog_2 = Dog.create(:related => 'baz too!')
395
+ @dog_1 = Dog.create(:related => 'zab')
396
+ @dog_2 = Dog.create(:related => 'zab too!')
397
397
  @cat_1 = Cat.create(:related => 'mitzi')
398
398
 
399
399
  @owner_1 = Owner.create(:name => 'Fred', :dogs => [@dog_1])
@@ -429,11 +429,11 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
429
429
  end
430
430
 
431
431
  it "should find the two tags that are related to a dog record" do
432
- Tag.search_for('dog=baz').length.should == 2
432
+ Tag.search_for('dog=zab').length.should == 2
433
433
  end
434
434
 
435
435
  it "should find the 3 tags that are related to dogs record" do
436
- Tag.search_for('baz').length.should == 3
436
+ Tag.search_for('zab').length.should == 3
437
437
  end
438
438
  end
439
439
 
@@ -547,22 +547,22 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
547
547
  before do
548
548
 
549
549
  # Create some tables with namespaces
550
- ActiveRecord::Migration.create_table(:zan_mars) { |t| t.integer :koo_id; t.integer :baz_id }
551
- ActiveRecord::Migration.create_table(:zan_bazs) { |t| t.string :related }
550
+ ActiveRecord::Migration.create_table(:zan_mars) { |t| t.integer :koo_id; t.integer :zab_id }
551
+ ActiveRecord::Migration.create_table(:zan_zabs) { |t| t.string :related }
552
552
  ActiveRecord::Migration.create_table(:zan_koos) { |t| t.string :foo }
553
553
 
554
554
  # The related classes
555
- module Zan; class Mar < ActiveRecord::Base; belongs_to :baz; belongs_to :koo; self.table_name = "zan_mars"; end; end
556
- module Zan; class Baz < ActiveRecord::Base; has_many :mars; self.table_name = "zan_bazs"; end; end
555
+ module Zan; class Mar < ActiveRecord::Base; belongs_to :zab; belongs_to :koo; self.table_name = "zan_mars"; end; end
556
+ module Zan; class Zab < ActiveRecord::Base; has_many :mars; self.table_name = "zan_zabs"; end; end
557
557
 
558
558
  # The class on which to call search_for
559
559
  module Zan
560
560
  class Koo < ActiveRecord::Base
561
561
  has_many :mars, :class_name => "Zan::Mar"
562
- has_many :bazs, :through => :mars
562
+ has_many :zabs, :through => :mars
563
563
  self.table_name = "zan_koos"
564
564
 
565
- scoped_search :relation => :bazs, :on => :related
565
+ scoped_search :relation => :zabs, :on => :related
566
566
  end
567
567
  end
568
568
 
@@ -570,29 +570,29 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
570
570
  @koo_2 = Zan::Koo.create!(:foo => 'foo too')
571
571
  @koo_3 = Zan::Koo.create!(:foo => 'foo three')
572
572
 
573
- @baz_1 = Zan::Baz.create(:related => 'baz')
574
- @baz_2 = Zan::Baz.create(:related => 'baz too!')
573
+ @zab_1 = Zan::Zab.create(:related => 'zab')
574
+ @zab_2 = Zan::Zab.create(:related => 'zab too!')
575
575
 
576
- @bar_1 = Zan::Mar.create!(:koo => @koo_1, :baz => @baz_1)
576
+ @bar_1 = Zan::Mar.create!(:koo => @koo_1, :zab => @zab_1)
577
577
  @bar_2 = Zan::Mar.create!(:koo => @koo_1)
578
- @bar_3 = Zan::Mar.create!(:koo => @koo_2, :baz => @baz_1)
579
- @bar_3 = Zan::Mar.create!(:koo => @koo_2, :baz => @baz_2)
580
- @bar_3 = Zan::Mar.create!(:koo => @koo_2, :baz => @baz_2)
578
+ @bar_3 = Zan::Mar.create!(:koo => @koo_2, :zab => @zab_1)
579
+ @bar_3 = Zan::Mar.create!(:koo => @koo_2, :zab => @zab_2)
580
+ @bar_3 = Zan::Mar.create!(:koo => @koo_2, :zab => @zab_2)
581
581
  @bar_4 = Zan::Mar.create!(:koo => @koo_3)
582
582
  end
583
583
 
584
584
  after do
585
- ActiveRecord::Migration.drop_table(:zan_bazs)
585
+ ActiveRecord::Migration.drop_table(:zan_zabs)
586
586
  ActiveRecord::Migration.drop_table(:zan_mars)
587
587
  ActiveRecord::Migration.drop_table(:zan_koos)
588
588
  end
589
589
 
590
- it "should find the two records that are related to a baz record" do
591
- Zan::Koo.search_for('baz').length.should == 2
590
+ it "should find the two records that are related to a zab record" do
591
+ Zan::Koo.search_for('zab').length.should == 2
592
592
  end
593
593
 
594
- it "should find the one record that is related to two baz records" do
595
- Zan::Koo.search_for('related=baz AND related="baz too!"').length.should == 1
594
+ it "should find the one record that is related to two zab records" do
595
+ Zan::Koo.search_for('related=zab AND related="zab too!"').length.should == 1
596
596
  end
597
597
  end
598
598
 
@@ -43,8 +43,9 @@ ScopedSearch::RSpec::Database.test_databases.each do |db|
43
43
  @class.search_for("uuid != #{@record3.uuid}").length.should == 2
44
44
  end
45
45
 
46
- it "should find a record by just specifying the uuid" do
46
+ it "should find a record by just specifying the uuid (case insensitive)" do
47
47
  @class.search_for(@record1.uuid).first.uuid.should == @record1.uuid
48
+ @class.search_for(@record1.uuid.upcase).first.uuid.should == @record1.uuid
48
49
  end
49
50
 
50
51
  it "should not find a record if the uuid is not a valid uuid" do
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scoped_search
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amos Benari
8
8
  - Willem van Bergen
9
9
  - Wes Hays
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-02-18 00:00:00.000000000 Z
13
+ date: 2025-09-30 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord
@@ -214,7 +214,7 @@ homepage: https://github.com/wvanbergen/scoped_search/wiki
214
214
  licenses:
215
215
  - MIT
216
216
  metadata: {}
217
- post_install_message:
217
+ post_install_message:
218
218
  rdoc_options:
219
219
  - "--title"
220
220
  - scoped_search
@@ -235,8 +235,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
235
235
  - !ruby/object:Gem::Version
236
236
  version: '0'
237
237
  requirements: []
238
- rubygems_version: 3.3.27
239
- signing_key:
238
+ rubygems_version: 3.0.3.1
239
+ signing_key:
240
240
  specification_version: 4
241
241
  summary: Easily search you ActiveRecord models with a simple query language using
242
242
  a named scope