bp3-railties 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: 84ec494932320156fd426bb68f8a5f5e590ead263302bd0910e0c65741788c5f
4
+ data.tar.gz: dce6344585dff33a59776637386af26b2e2fb6f9936a311b53fec3e0f9df1026
5
+ SHA512:
6
+ metadata.gz: d4246bcc44e3e2a4f0639d5b4dece44440e59421ccbf729c97895db4ee8ae5ec93deded5fa3fda4859869dd1c976524f67b6a3112a38822a3a7d0188eb9e489d
7
+ data.tar.gz: 56e225e4e36383c1628a2ea5ced45c0645ef85e8fc1cbbd973936fdb2dd7dc2d841f3cd6d0ac45bf33a39bc7fbc33ac44e486f7f9c042cac474cada0bebdd1ad
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-railties"
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-railties.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,201 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bp3-railties (0.1.1)
5
+ actionmailer (>= 7.1.2, < 8)
6
+ activesupport (>= 7.1.2, < 8)
7
+ bp3-core (>= 0.1, < 1)
8
+ railties (>= 7.1.2, < 8)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actionmailer (7.1.3.3)
14
+ actionpack (= 7.1.3.3)
15
+ actionview (= 7.1.3.3)
16
+ activejob (= 7.1.3.3)
17
+ activesupport (= 7.1.3.3)
18
+ mail (~> 2.5, >= 2.5.4)
19
+ net-imap
20
+ net-pop
21
+ net-smtp
22
+ rails-dom-testing (~> 2.2)
23
+ actionpack (7.1.3.3)
24
+ actionview (= 7.1.3.3)
25
+ activesupport (= 7.1.3.3)
26
+ nokogiri (>= 1.8.5)
27
+ racc
28
+ rack (>= 2.2.4)
29
+ rack-session (>= 1.0.1)
30
+ rack-test (>= 0.6.3)
31
+ rails-dom-testing (~> 2.2)
32
+ rails-html-sanitizer (~> 1.6)
33
+ actionview (7.1.3.3)
34
+ activesupport (= 7.1.3.3)
35
+ builder (~> 3.1)
36
+ erubi (~> 1.11)
37
+ rails-dom-testing (~> 2.2)
38
+ rails-html-sanitizer (~> 1.6)
39
+ activejob (7.1.3.3)
40
+ activesupport (= 7.1.3.3)
41
+ globalid (>= 0.3.6)
42
+ activesupport (7.1.3.3)
43
+ base64
44
+ bigdecimal
45
+ concurrent-ruby (~> 1.0, >= 1.0.2)
46
+ connection_pool (>= 2.2.5)
47
+ drb
48
+ i18n (>= 1.6, < 2)
49
+ minitest (>= 5.1)
50
+ mutex_m
51
+ tzinfo (~> 2.0)
52
+ ast (2.4.2)
53
+ base64 (0.2.0)
54
+ bigdecimal (3.1.8)
55
+ bp3-core (0.1.2)
56
+ actionview (>= 7.1.2, < 8)
57
+ activesupport (>= 7.1.2, < 8)
58
+ builder (3.2.4)
59
+ byebug (11.1.3)
60
+ concurrent-ruby (1.3.1)
61
+ connection_pool (2.4.1)
62
+ crass (1.0.6)
63
+ date (3.3.4)
64
+ diff-lcs (1.5.1)
65
+ drb (2.2.1)
66
+ erubi (1.12.0)
67
+ globalid (1.2.1)
68
+ activesupport (>= 6.1)
69
+ i18n (1.14.5)
70
+ concurrent-ruby (~> 1.0)
71
+ io-console (0.7.2)
72
+ irb (1.13.1)
73
+ rdoc (>= 4.0.0)
74
+ reline (>= 0.4.2)
75
+ json (2.7.2)
76
+ language_server-protocol (3.17.0.3)
77
+ loofah (2.22.0)
78
+ crass (~> 1.0.2)
79
+ nokogiri (>= 1.12.0)
80
+ mail (2.8.1)
81
+ mini_mime (>= 0.1.1)
82
+ net-imap
83
+ net-pop
84
+ net-smtp
85
+ mini_mime (1.1.5)
86
+ minitest (5.23.1)
87
+ mutex_m (0.2.0)
88
+ net-imap (0.4.12)
89
+ date
90
+ net-protocol
91
+ net-pop (0.1.2)
92
+ net-protocol
93
+ net-protocol (0.2.2)
94
+ timeout
95
+ net-smtp (0.5.0)
96
+ net-protocol
97
+ nokogiri (1.16.5-x86_64-darwin)
98
+ racc (~> 1.4)
99
+ parallel (1.24.0)
100
+ parser (3.3.2.0)
101
+ ast (~> 2.4.1)
102
+ racc
103
+ psych (5.1.2)
104
+ stringio
105
+ racc (1.8.0)
106
+ rack (3.0.11)
107
+ rack-session (2.0.0)
108
+ rack (>= 3.0.0)
109
+ rack-test (2.1.0)
110
+ rack (>= 1.3)
111
+ rackup (2.1.0)
112
+ rack (>= 3)
113
+ webrick (~> 1.8)
114
+ rails-dom-testing (2.2.0)
115
+ activesupport (>= 5.0.0)
116
+ minitest
117
+ nokogiri (>= 1.6)
118
+ rails-html-sanitizer (1.6.0)
119
+ loofah (~> 2.21)
120
+ nokogiri (~> 1.14)
121
+ railties (7.1.3.3)
122
+ actionpack (= 7.1.3.3)
123
+ activesupport (= 7.1.3.3)
124
+ irb
125
+ rackup (>= 1.0.0)
126
+ rake (>= 12.2)
127
+ thor (~> 1.0, >= 1.2.2)
128
+ zeitwerk (~> 2.6)
129
+ rainbow (3.1.1)
130
+ rake (13.2.1)
131
+ rdoc (6.7.0)
132
+ psych (>= 4.0.0)
133
+ regexp_parser (2.9.2)
134
+ reline (0.5.8)
135
+ io-console (~> 0.5)
136
+ rexml (3.2.8)
137
+ strscan (>= 3.0.9)
138
+ rspec (3.13.0)
139
+ rspec-core (~> 3.13.0)
140
+ rspec-expectations (~> 3.13.0)
141
+ rspec-mocks (~> 3.13.0)
142
+ rspec-core (3.13.0)
143
+ rspec-support (~> 3.13.0)
144
+ rspec-expectations (3.13.0)
145
+ diff-lcs (>= 1.2.0, < 2.0)
146
+ rspec-support (~> 3.13.0)
147
+ rspec-mocks (3.13.1)
148
+ diff-lcs (>= 1.2.0, < 2.0)
149
+ rspec-support (~> 3.13.0)
150
+ rspec-support (3.13.1)
151
+ rubocop (1.64.1)
152
+ json (~> 2.3)
153
+ language_server-protocol (>= 3.17.0)
154
+ parallel (~> 1.10)
155
+ parser (>= 3.3.0.2)
156
+ rainbow (>= 2.2.2, < 4.0)
157
+ regexp_parser (>= 1.8, < 3.0)
158
+ rexml (>= 3.2.5, < 4.0)
159
+ rubocop-ast (>= 1.31.1, < 2.0)
160
+ ruby-progressbar (~> 1.7)
161
+ unicode-display_width (>= 2.4.0, < 3.0)
162
+ rubocop-ast (1.31.3)
163
+ parser (>= 3.3.1.0)
164
+ rubocop-capybara (2.20.0)
165
+ rubocop (~> 1.41)
166
+ rubocop-factory_bot (2.25.1)
167
+ rubocop (~> 1.41)
168
+ rubocop-rake (0.6.0)
169
+ rubocop (~> 1.0)
170
+ rubocop-rspec (2.30.0)
171
+ rubocop (~> 1.40)
172
+ rubocop-capybara (~> 2.17)
173
+ rubocop-factory_bot (~> 2.22)
174
+ rubocop-rspec_rails (~> 2.28)
175
+ rubocop-rspec_rails (2.28.3)
176
+ rubocop (~> 1.40)
177
+ ruby-progressbar (1.13.0)
178
+ stringio (3.1.0)
179
+ strscan (3.1.0)
180
+ thor (1.3.1)
181
+ timeout (0.4.1)
182
+ tzinfo (2.0.6)
183
+ concurrent-ruby (~> 1.0)
184
+ unicode-display_width (2.5.0)
185
+ webrick (1.8.1)
186
+ zeitwerk (2.6.15)
187
+
188
+ PLATFORMS
189
+ x86_64-darwin-22
190
+
191
+ DEPENDENCIES
192
+ bp3-railties!
193
+ byebug
194
+ rake (~> 13.0)
195
+ rspec (~> 3.0)
196
+ rubocop (~> 1.21)
197
+ rubocop-rake (~> 0.6)
198
+ rubocop-rspec (~> 2.25)
199
+
200
+ BUNDLED WITH
201
+ 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::Railties
2
+
3
+ bp3-railties adapts `railties` for BP3, the persuavis/black_phoebe_3
4
+ multi-site multi-tenant rails application. In particular, it adapts `Rails::MailersController`.
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'bp3-railties'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle install
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install bp3-railties
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 new
33
+ version, update the version number in `version.rb`, and then run `rake release`,
34
+ which will create a git tag for the version, push git commits and the created tag,
35
+ 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,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/bp3/railties/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'bp3-railties'
7
+ spec.version = Bp3::Railties::VERSION
8
+ spec.authors = ['Wim den Braven']
9
+ spec.email = ['wimdenbraven@persuavis.com']
10
+
11
+ spec.summary = 'bp3-railties adapts friendly_id 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-railties'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/persuavis/bp3-railties/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 'actionmailer', ['>= 7.1.2', '< 8']
35
+ spec.add_dependency 'activesupport', ['>= 7.1.2', '< 8']
36
+ spec.add_dependency 'bp3-core', ['>= 0.1', '< 1']
37
+ spec.add_dependency 'railties', ['>= 7.1.2', '< 8']
38
+
39
+ spec.add_development_dependency 'byebug'
40
+ spec.add_development_dependency 'rake', '~> 13.0'
41
+ spec.add_development_dependency 'rspec', '~> 3.0'
42
+ spec.add_development_dependency 'rubocop', '~> 1.21'
43
+ spec.add_development_dependency 'rubocop-rake', '~> 0.6'
44
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.25'
45
+
46
+ # For more information and examples about making a new gem, check out our
47
+ # guide at: https://bundler.io/guides/creating_gem.html
48
+ spec.metadata['rubygems_mfa_required'] = 'true'
49
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rails/railtie'
4
+
5
+ module Bp3
6
+ module Railties
7
+ class Railtie < Rails::Railtie
8
+ initializer 'bp3.railties.railtie.register' do |app|
9
+ app.config.after_initialize do
10
+ ::Rails::MailersController # preload
11
+ module ::Rails
12
+ class MailersController
13
+ include Bp3::Core::Actions
14
+ include Bp3::Core::Settings
15
+ include Bp3::Core::FeatureFlags
16
+ include Bp3::Core::Cookies
17
+
18
+ before_action :authenticate_root!
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bp3
4
+ module Railties
5
+ VERSION = '0.1.1'
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/concern'
4
+ require 'active_support/core_ext/module/attribute_accessors'
5
+
6
+ require_relative 'railties/railtie'
7
+ require_relative 'railties/version'
8
+
9
+ module Bp3
10
+ module Railties
11
+ end
12
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bp3/railties'
@@ -0,0 +1,6 @@
1
+ module Bp3
2
+ module Railties
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,227 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bp3-railties
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: actionmailer
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: activesupport
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 7.1.2
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '8'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 7.1.2
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '8'
53
+ - !ruby/object:Gem::Dependency
54
+ name: bp3-core
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: railties
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: 7.1.2
80
+ - - "<"
81
+ - !ruby/object:Gem::Version
82
+ version: '8'
83
+ type: :runtime
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 7.1.2
90
+ - - "<"
91
+ - !ruby/object:Gem::Version
92
+ version: '8'
93
+ - !ruby/object:Gem::Dependency
94
+ name: byebug
95
+ requirement: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ type: :development
101
+ prerelease: false
102
+ version_requirements: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ - !ruby/object:Gem::Dependency
108
+ name: rake
109
+ requirement: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - "~>"
112
+ - !ruby/object:Gem::Version
113
+ version: '13.0'
114
+ type: :development
115
+ prerelease: false
116
+ version_requirements: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - "~>"
119
+ - !ruby/object:Gem::Version
120
+ version: '13.0'
121
+ - !ruby/object:Gem::Dependency
122
+ name: rspec
123
+ requirement: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - "~>"
126
+ - !ruby/object:Gem::Version
127
+ version: '3.0'
128
+ type: :development
129
+ prerelease: false
130
+ version_requirements: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - "~>"
133
+ - !ruby/object:Gem::Version
134
+ version: '3.0'
135
+ - !ruby/object:Gem::Dependency
136
+ name: rubocop
137
+ requirement: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - "~>"
140
+ - !ruby/object:Gem::Version
141
+ version: '1.21'
142
+ type: :development
143
+ prerelease: false
144
+ version_requirements: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - "~>"
147
+ - !ruby/object:Gem::Version
148
+ version: '1.21'
149
+ - !ruby/object:Gem::Dependency
150
+ name: rubocop-rake
151
+ requirement: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - "~>"
154
+ - !ruby/object:Gem::Version
155
+ version: '0.6'
156
+ type: :development
157
+ prerelease: false
158
+ version_requirements: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - "~>"
161
+ - !ruby/object:Gem::Version
162
+ version: '0.6'
163
+ - !ruby/object:Gem::Dependency
164
+ name: rubocop-rspec
165
+ requirement: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - "~>"
168
+ - !ruby/object:Gem::Version
169
+ version: '2.25'
170
+ type: :development
171
+ prerelease: false
172
+ version_requirements: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - "~>"
175
+ - !ruby/object:Gem::Version
176
+ version: '2.25'
177
+ description:
178
+ email:
179
+ - wimdenbraven@persuavis.com
180
+ executables: []
181
+ extensions: []
182
+ extra_rdoc_files: []
183
+ files:
184
+ - ".rspec"
185
+ - ".rubocop.yml"
186
+ - ".yardopts"
187
+ - CHANGELOG.md
188
+ - Gemfile
189
+ - Gemfile.lock
190
+ - LICENSE.txt
191
+ - README.md
192
+ - Rakefile
193
+ - bp3-railties.gemspec
194
+ - lib/bp3-railties.rb
195
+ - lib/bp3/railties.rb
196
+ - lib/bp3/railties/railtie.rb
197
+ - lib/bp3/railties/version.rb
198
+ - sig/bp3/railties.rbs
199
+ homepage: https://www.black-phoebe.com
200
+ licenses:
201
+ - MIT
202
+ metadata:
203
+ allowed_push_host: https://rubygems.org
204
+ homepage_uri: https://www.black-phoebe.com
205
+ source_code_uri: https://github.com/persuavis/bp3-railties
206
+ changelog_uri: https://github.com/persuavis/bp3-railties/blob/main/CHANGELOG.md
207
+ rubygems_mfa_required: 'true'
208
+ post_install_message:
209
+ rdoc_options: []
210
+ require_paths:
211
+ - lib
212
+ required_ruby_version: !ruby/object:Gem::Requirement
213
+ requirements:
214
+ - - ">="
215
+ - !ruby/object:Gem::Version
216
+ version: 3.2.0
217
+ required_rubygems_version: !ruby/object:Gem::Requirement
218
+ requirements:
219
+ - - ">="
220
+ - !ruby/object:Gem::Version
221
+ version: '0'
222
+ requirements: []
223
+ rubygems_version: 3.5.11
224
+ signing_key:
225
+ specification_version: 4
226
+ summary: bp3-railties adapts friendly_id for BP3 (persuavis/black_phoebe_3).
227
+ test_files: []