bp3-pg_search 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b4df819c202155b158683abb3ba50f54d79c73d8d61f45a1467c2c0f249278ba
4
+ data.tar.gz: 300970ef374144a192622927241bf705bce40d95748ecfef44501af4cd7d4690
5
+ SHA512:
6
+ metadata.gz: 469fd352c3dcb8c9de274937664455d34c0b6de478d17aefa9ee76ad66ba959f373b948af0895f688a89fe3582191eb66fd0f5bd9e8bead18d6fde7b80e479e4
7
+ data.tar.gz: 79b0650ee99ab431937b049a1e43f3daebd25158169df68cdefd4105cbeefcf0eccc63e52b776ca65fd243fe74ed3939839e42bdaabf45f19441de8a40ca61d2
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,51 @@
1
+ require:
2
+ - rubocop-rake
3
+ - rubocop-rspec
4
+ - rubocop-capybara
5
+ - rubocop-factory_bot
6
+
7
+ AllCops:
8
+ TargetRubyVersion: 3.2.2
9
+ NewCops: enable
10
+
11
+ Gemspec/DevelopmentDependencies:
12
+ EnforcedStyle: gemspec
13
+
14
+ Lint/ConstantDefinitionInBlock:
15
+ Exclude:
16
+ - lib/bp3/**/railtie.rb
17
+
18
+ Lint/Void:
19
+ Exclude:
20
+ - lib/bp3/**/railtie.rb
21
+
22
+ Metrics/AbcSize:
23
+ Max: 26
24
+
25
+ Metrics/BlockLength:
26
+ Max: 66
27
+
28
+ Metrics/CyclomaticComplexity:
29
+ Max: 10
30
+
31
+ Metrics/MethodLength:
32
+ Max: 15
33
+
34
+ Metrics/ModuleLength:
35
+ Max: 150
36
+
37
+ Metrics/PerceivedComplexity:
38
+ Max: 10
39
+
40
+ Naming/FileName:
41
+ Exclude:
42
+ - lib/bp3-*.rb
43
+
44
+ RSpec/ExampleLength:
45
+ Max: 10
46
+
47
+ RSpec/MultipleExpectations:
48
+ Max: 4
49
+
50
+ Style/Documentation:
51
+ Enabled: false
data/.yardopts ADDED
@@ -0,0 +1,8 @@
1
+ --charset utf-8
2
+ --readme README.md
3
+ --markup markdown
4
+ --title "bp3-pg_search"
5
+ --private
6
+ -
7
+ CHANGELOG.md
8
+ LICENSE.txt
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.1] - 2024-06-03
4
+
5
+ - Tweaks and documentation
6
+
7
+ ## [0.1.0] - 2024-01-08
8
+
9
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in bp3-pg_search.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,184 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bp3-pg_search (0.1.1)
5
+ activesupport (>= 7.1.2, < 8)
6
+ bp3-core (>= 0.1, < 1)
7
+ bp3-string (>= 0.1, < 1)
8
+ pg_search (~> 2.3)
9
+ railties (>= 7.1.2, < 8)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actionpack (7.1.3.3)
15
+ actionview (= 7.1.3.3)
16
+ activesupport (= 7.1.3.3)
17
+ nokogiri (>= 1.8.5)
18
+ racc
19
+ rack (>= 2.2.4)
20
+ rack-session (>= 1.0.1)
21
+ rack-test (>= 0.6.3)
22
+ rails-dom-testing (~> 2.2)
23
+ rails-html-sanitizer (~> 1.6)
24
+ actionview (7.1.3.3)
25
+ activesupport (= 7.1.3.3)
26
+ builder (~> 3.1)
27
+ erubi (~> 1.11)
28
+ rails-dom-testing (~> 2.2)
29
+ rails-html-sanitizer (~> 1.6)
30
+ activemodel (7.1.3.3)
31
+ activesupport (= 7.1.3.3)
32
+ activerecord (7.1.3.3)
33
+ activemodel (= 7.1.3.3)
34
+ activesupport (= 7.1.3.3)
35
+ timeout (>= 0.4.0)
36
+ activesupport (7.1.3.3)
37
+ base64
38
+ bigdecimal
39
+ concurrent-ruby (~> 1.0, >= 1.0.2)
40
+ connection_pool (>= 2.2.5)
41
+ drb
42
+ i18n (>= 1.6, < 2)
43
+ minitest (>= 5.1)
44
+ mutex_m
45
+ tzinfo (~> 2.0)
46
+ ast (2.4.2)
47
+ base64 (0.2.0)
48
+ bigdecimal (3.1.8)
49
+ bp3-core (0.1.2)
50
+ actionview (>= 7.1.2, < 8)
51
+ activesupport (>= 7.1.2, < 8)
52
+ bp3-string (0.1.1)
53
+ activerecord (~> 7.1)
54
+ activesupport (>= 7.1.2, < 8)
55
+ railties (~> 7.1)
56
+ builder (3.2.4)
57
+ byebug (11.1.3)
58
+ concurrent-ruby (1.3.1)
59
+ connection_pool (2.4.1)
60
+ crass (1.0.6)
61
+ diff-lcs (1.5.1)
62
+ drb (2.2.1)
63
+ erubi (1.12.0)
64
+ i18n (1.14.5)
65
+ concurrent-ruby (~> 1.0)
66
+ io-console (0.7.2)
67
+ irb (1.13.1)
68
+ rdoc (>= 4.0.0)
69
+ reline (>= 0.4.2)
70
+ json (2.7.2)
71
+ language_server-protocol (3.17.0.3)
72
+ loofah (2.22.0)
73
+ crass (~> 1.0.2)
74
+ nokogiri (>= 1.12.0)
75
+ minitest (5.23.1)
76
+ mutex_m (0.2.0)
77
+ nokogiri (1.16.5-x86_64-darwin)
78
+ racc (~> 1.4)
79
+ parallel (1.24.0)
80
+ parser (3.3.2.0)
81
+ ast (~> 2.4.1)
82
+ racc
83
+ pg_search (2.3.6)
84
+ activerecord (>= 5.2)
85
+ activesupport (>= 5.2)
86
+ psych (5.1.2)
87
+ stringio
88
+ racc (1.8.0)
89
+ rack (3.0.11)
90
+ rack-session (2.0.0)
91
+ rack (>= 3.0.0)
92
+ rack-test (2.1.0)
93
+ rack (>= 1.3)
94
+ rackup (2.1.0)
95
+ rack (>= 3)
96
+ webrick (~> 1.8)
97
+ rails-dom-testing (2.2.0)
98
+ activesupport (>= 5.0.0)
99
+ minitest
100
+ nokogiri (>= 1.6)
101
+ rails-html-sanitizer (1.6.0)
102
+ loofah (~> 2.21)
103
+ nokogiri (~> 1.14)
104
+ railties (7.1.3.3)
105
+ actionpack (= 7.1.3.3)
106
+ activesupport (= 7.1.3.3)
107
+ irb
108
+ rackup (>= 1.0.0)
109
+ rake (>= 12.2)
110
+ thor (~> 1.0, >= 1.2.2)
111
+ zeitwerk (~> 2.6)
112
+ rainbow (3.1.1)
113
+ rake (13.2.1)
114
+ rdoc (6.7.0)
115
+ psych (>= 4.0.0)
116
+ regexp_parser (2.9.2)
117
+ reline (0.5.8)
118
+ io-console (~> 0.5)
119
+ rexml (3.2.8)
120
+ strscan (>= 3.0.9)
121
+ rspec (3.13.0)
122
+ rspec-core (~> 3.13.0)
123
+ rspec-expectations (~> 3.13.0)
124
+ rspec-mocks (~> 3.13.0)
125
+ rspec-core (3.13.0)
126
+ rspec-support (~> 3.13.0)
127
+ rspec-expectations (3.13.0)
128
+ diff-lcs (>= 1.2.0, < 2.0)
129
+ rspec-support (~> 3.13.0)
130
+ rspec-mocks (3.13.1)
131
+ diff-lcs (>= 1.2.0, < 2.0)
132
+ rspec-support (~> 3.13.0)
133
+ rspec-support (3.13.1)
134
+ rubocop (1.64.1)
135
+ json (~> 2.3)
136
+ language_server-protocol (>= 3.17.0)
137
+ parallel (~> 1.10)
138
+ parser (>= 3.3.0.2)
139
+ rainbow (>= 2.2.2, < 4.0)
140
+ regexp_parser (>= 1.8, < 3.0)
141
+ rexml (>= 3.2.5, < 4.0)
142
+ rubocop-ast (>= 1.31.1, < 2.0)
143
+ ruby-progressbar (~> 1.7)
144
+ unicode-display_width (>= 2.4.0, < 3.0)
145
+ rubocop-ast (1.31.3)
146
+ parser (>= 3.3.1.0)
147
+ rubocop-capybara (2.20.0)
148
+ rubocop (~> 1.41)
149
+ rubocop-factory_bot (2.25.1)
150
+ rubocop (~> 1.41)
151
+ rubocop-rake (0.6.0)
152
+ rubocop (~> 1.0)
153
+ rubocop-rspec (2.30.0)
154
+ rubocop (~> 1.40)
155
+ rubocop-capybara (~> 2.17)
156
+ rubocop-factory_bot (~> 2.22)
157
+ rubocop-rspec_rails (~> 2.28)
158
+ rubocop-rspec_rails (2.28.3)
159
+ rubocop (~> 1.40)
160
+ ruby-progressbar (1.13.0)
161
+ stringio (3.1.0)
162
+ strscan (3.1.0)
163
+ thor (1.3.1)
164
+ timeout (0.4.1)
165
+ tzinfo (2.0.6)
166
+ concurrent-ruby (~> 1.0)
167
+ unicode-display_width (2.5.0)
168
+ webrick (1.8.1)
169
+ zeitwerk (2.6.15)
170
+
171
+ PLATFORMS
172
+ x86_64-darwin-22
173
+
174
+ DEPENDENCIES
175
+ bp3-pg_search!
176
+ byebug
177
+ rake (~> 13.0)
178
+ rspec (~> 3.0)
179
+ rubocop (~> 1.21)
180
+ rubocop-rake (~> 0.6)
181
+ rubocop-rspec (~> 2.25)
182
+
183
+ BUNDLED WITH
184
+ 2.5.11
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Wim den Braven
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # Bp3::PgSearch
2
+
3
+ bp3-pg_search adapts `pg_search` for BP3, the persuavis/black_phoebe_3
4
+ multi-site multi-tenant rails application.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'bp3-pg_search'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle install
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install bp3-pg_search
21
+
22
+ ## Usage
23
+
24
+ Just add the gem to your BP3 app.
25
+
26
+ ## Development
27
+
28
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run
29
+ `rake spec` to run the tests. You can also run `bin/console` for an interactive
30
+ prompt that will allow you to experiment.
31
+
32
+ To install this gem onto your local machine, run `rake install`. To release a
33
+ new version, update the version number in `version.rb`, and then run
34
+ `rake release`, which will create a git tag for the version, push git
35
+ commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
36
+
37
+ ## Testing
38
+ Run `rake` to run rspec tests and rubocop linting.
39
+
40
+ ## Documentation
41
+ A `.yardopts` file is provided to support yard documentation.
42
+
43
+ ## License
44
+
45
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require 'rubocop/rake_task'
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/bp3/pg_search/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'bp3-pg_search'
7
+ spec.version = Bp3::PgSearch::VERSION
8
+ spec.authors = ['Wim den Braven']
9
+ spec.email = ['wimdenbraven@persuavis.com']
10
+
11
+ spec.summary = 'bp3-pg_search adapts pg_search for BP3 (persuavis/black_phoebe_3).'
12
+ # spec.description = "TODO: Write a longer description or delete this line."
13
+ spec.homepage = 'https://www.black-phoebe.com'
14
+ spec.license = 'MIT'
15
+ spec.required_ruby_version = '>= 3.2.0'
16
+
17
+ spec.metadata['allowed_push_host'] = 'https://rubygems.org'
18
+
19
+ spec.metadata['homepage_uri'] = spec.homepage
20
+ spec.metadata['source_code_uri'] = 'https://github.com/persuavis/bp3-pg_search'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/persuavis/bp3-pg_search/blob/main/CHANGELOG.md'
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
26
+ `git ls-files -z`.split("\x0").reject do |f|
27
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
28
+ end
29
+ end
30
+ spec.bindir = 'exe'
31
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ['lib']
33
+
34
+ spec.add_dependency 'activesupport', ['>= 7.1.2', '< 8']
35
+ spec.add_dependency 'bp3-core', ['>= 0.1', '< 1']
36
+ spec.add_dependency 'bp3-string', ['>= 0.1', '< 1']
37
+ spec.add_dependency 'pg_search', '~> 2.3'
38
+ spec.add_dependency 'railties', ['>= 7.1.2', '< 8']
39
+
40
+ spec.add_development_dependency 'byebug'
41
+ spec.add_development_dependency 'rake', '~> 13.0'
42
+ spec.add_development_dependency 'rspec', '~> 3.0'
43
+ spec.add_development_dependency 'rubocop', '~> 1.21'
44
+ spec.add_development_dependency 'rubocop-rake', '~> 0.6'
45
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.25'
46
+
47
+ # For more information and examples about making a new gem, check out our
48
+ # guide at: https://bundler.io/guides/creating_gem.html
49
+ spec.metadata['rubygems_mfa_required'] = 'true'
50
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rails/railtie'
4
+
5
+ module Bp3
6
+ module PgSearch
7
+ class Railtie < Rails::Railtie
8
+ initializer 'bp3.pg_search.railtie.register' do |app|
9
+ app.config.after_initialize do
10
+ ::PgSearch::Document # preload
11
+ module ::PgSearch
12
+ class Document
13
+ include Bp3::Core::Rqid
14
+ include Bp3::Core::Sqnr
15
+ include Bp3::Core::Tenantable
16
+ include Bp3::Core::Displayable
17
+ include Bp3::Core::Ransackable
18
+
19
+ configure_tenancy
20
+ use_sqnr_for_ordering
21
+
22
+ def self.table_name_basis
23
+ table_name.gsub(/\Apublic\./, '').singularize
24
+ end
25
+
26
+ def controllerize
27
+ self.class.model_name.name.underscore.tr('/', '_').controllerize
28
+ end
29
+
30
+ private
31
+
32
+ def version_filter_mask
33
+ '[FILTERED][PS]'
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bp3
4
+ module PgSearch
5
+ VERSION = '0.1.1'
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'pg_search/railtie'
4
+ require_relative 'pg_search/version'
5
+
6
+ module Bp3
7
+ module PgSearch
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bp3/pg_search'
@@ -0,0 +1,6 @@
1
+ module Bp3
2
+ module PgSearch
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,241 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bp3-pg_search
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Wim den Braven
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-06-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 7.1.2
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '8'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 7.1.2
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '8'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bp3-core
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0.1'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '1'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0.1'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '1'
53
+ - !ruby/object:Gem::Dependency
54
+ name: bp3-string
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0.1'
60
+ - - "<"
61
+ - !ruby/object:Gem::Version
62
+ version: '1'
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0.1'
70
+ - - "<"
71
+ - !ruby/object:Gem::Version
72
+ version: '1'
73
+ - !ruby/object:Gem::Dependency
74
+ name: pg_search
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '2.3'
80
+ type: :runtime
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '2.3'
87
+ - !ruby/object:Gem::Dependency
88
+ name: railties
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: 7.1.2
94
+ - - "<"
95
+ - !ruby/object:Gem::Version
96
+ version: '8'
97
+ type: :runtime
98
+ prerelease: false
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 7.1.2
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: '8'
107
+ - !ruby/object:Gem::Dependency
108
+ name: byebug
109
+ requirement: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ type: :development
115
+ prerelease: false
116
+ version_requirements: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ - !ruby/object:Gem::Dependency
122
+ name: rake
123
+ requirement: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - "~>"
126
+ - !ruby/object:Gem::Version
127
+ version: '13.0'
128
+ type: :development
129
+ prerelease: false
130
+ version_requirements: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - "~>"
133
+ - !ruby/object:Gem::Version
134
+ version: '13.0'
135
+ - !ruby/object:Gem::Dependency
136
+ name: rspec
137
+ requirement: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - "~>"
140
+ - !ruby/object:Gem::Version
141
+ version: '3.0'
142
+ type: :development
143
+ prerelease: false
144
+ version_requirements: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - "~>"
147
+ - !ruby/object:Gem::Version
148
+ version: '3.0'
149
+ - !ruby/object:Gem::Dependency
150
+ name: rubocop
151
+ requirement: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - "~>"
154
+ - !ruby/object:Gem::Version
155
+ version: '1.21'
156
+ type: :development
157
+ prerelease: false
158
+ version_requirements: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - "~>"
161
+ - !ruby/object:Gem::Version
162
+ version: '1.21'
163
+ - !ruby/object:Gem::Dependency
164
+ name: rubocop-rake
165
+ requirement: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - "~>"
168
+ - !ruby/object:Gem::Version
169
+ version: '0.6'
170
+ type: :development
171
+ prerelease: false
172
+ version_requirements: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - "~>"
175
+ - !ruby/object:Gem::Version
176
+ version: '0.6'
177
+ - !ruby/object:Gem::Dependency
178
+ name: rubocop-rspec
179
+ requirement: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - "~>"
182
+ - !ruby/object:Gem::Version
183
+ version: '2.25'
184
+ type: :development
185
+ prerelease: false
186
+ version_requirements: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - "~>"
189
+ - !ruby/object:Gem::Version
190
+ version: '2.25'
191
+ description:
192
+ email:
193
+ - wimdenbraven@persuavis.com
194
+ executables: []
195
+ extensions: []
196
+ extra_rdoc_files: []
197
+ files:
198
+ - ".rspec"
199
+ - ".rubocop.yml"
200
+ - ".yardopts"
201
+ - CHANGELOG.md
202
+ - Gemfile
203
+ - Gemfile.lock
204
+ - LICENSE.txt
205
+ - README.md
206
+ - Rakefile
207
+ - bp3-pg_search.gemspec
208
+ - lib/bp3-pg_search.rb
209
+ - lib/bp3/pg_search.rb
210
+ - lib/bp3/pg_search/railtie.rb
211
+ - lib/bp3/pg_search/version.rb
212
+ - sig/bp3/pg_search.rbs
213
+ homepage: https://www.black-phoebe.com
214
+ licenses:
215
+ - MIT
216
+ metadata:
217
+ allowed_push_host: https://rubygems.org
218
+ homepage_uri: https://www.black-phoebe.com
219
+ source_code_uri: https://github.com/persuavis/bp3-pg_search
220
+ changelog_uri: https://github.com/persuavis/bp3-pg_search/blob/main/CHANGELOG.md
221
+ rubygems_mfa_required: 'true'
222
+ post_install_message:
223
+ rdoc_options: []
224
+ require_paths:
225
+ - lib
226
+ required_ruby_version: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - ">="
229
+ - !ruby/object:Gem::Version
230
+ version: 3.2.0
231
+ required_rubygems_version: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: '0'
236
+ requirements: []
237
+ rubygems_version: 3.5.11
238
+ signing_key:
239
+ specification_version: 4
240
+ summary: bp3-pg_search adapts pg_search for BP3 (persuavis/black_phoebe_3).
241
+ test_files: []