bp3-paper_trail 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c9158f6e9688ec2d963f028c91970157051e254a0e10606c7a823e8e6cbfd2f3
4
+ data.tar.gz: 3a13f30a1e071b2d67e5580cbe582a9a721ba052890179aeea834a5e873aae19
5
+ SHA512:
6
+ metadata.gz: 29b5cfa9aed1cd3f0bf693ab671a1b28f7f99cc0bcd3b365a418728756a99ed06d3475d5cb5b5fc66b5898b5a8fd1ad201328e6c84549183370fb2e453fa52a2
7
+ data.tar.gz: 0531df81f966d0ec1902ed8da03bb656d6363392a27beb228f52b8ae37ae10759454cca1729f415c4b35cf1b42937c6e0837592e2f7e22c994c5f20ce5f4f0c2
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-paper_trail"
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-paper_trail.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,182 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bp3-paper_trail (0.1.1)
5
+ actionpack (>= 7.1.2, < 8)
6
+ activesupport (>= 7.1.2, < 8)
7
+ bp3-core (>= 0.1, < 1)
8
+ paper_trail (~> 15.1)
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
+ builder (3.2.4)
53
+ byebug (11.1.3)
54
+ concurrent-ruby (1.3.1)
55
+ connection_pool (2.4.1)
56
+ crass (1.0.6)
57
+ diff-lcs (1.5.1)
58
+ drb (2.2.1)
59
+ erubi (1.12.0)
60
+ i18n (1.14.5)
61
+ concurrent-ruby (~> 1.0)
62
+ io-console (0.7.2)
63
+ irb (1.13.1)
64
+ rdoc (>= 4.0.0)
65
+ reline (>= 0.4.2)
66
+ json (2.7.2)
67
+ language_server-protocol (3.17.0.3)
68
+ loofah (2.22.0)
69
+ crass (~> 1.0.2)
70
+ nokogiri (>= 1.12.0)
71
+ minitest (5.23.1)
72
+ mutex_m (0.2.0)
73
+ nokogiri (1.16.5-x86_64-darwin)
74
+ racc (~> 1.4)
75
+ paper_trail (15.1.0)
76
+ activerecord (>= 6.1)
77
+ request_store (~> 1.4)
78
+ parallel (1.24.0)
79
+ parser (3.3.2.0)
80
+ ast (~> 2.4.1)
81
+ racc
82
+ psych (5.1.2)
83
+ stringio
84
+ racc (1.8.0)
85
+ rack (3.0.11)
86
+ rack-session (2.0.0)
87
+ rack (>= 3.0.0)
88
+ rack-test (2.1.0)
89
+ rack (>= 1.3)
90
+ rackup (2.1.0)
91
+ rack (>= 3)
92
+ webrick (~> 1.8)
93
+ rails-dom-testing (2.2.0)
94
+ activesupport (>= 5.0.0)
95
+ minitest
96
+ nokogiri (>= 1.6)
97
+ rails-html-sanitizer (1.6.0)
98
+ loofah (~> 2.21)
99
+ nokogiri (~> 1.14)
100
+ railties (7.1.3.3)
101
+ actionpack (= 7.1.3.3)
102
+ activesupport (= 7.1.3.3)
103
+ irb
104
+ rackup (>= 1.0.0)
105
+ rake (>= 12.2)
106
+ thor (~> 1.0, >= 1.2.2)
107
+ zeitwerk (~> 2.6)
108
+ rainbow (3.1.1)
109
+ rake (13.2.1)
110
+ rdoc (6.7.0)
111
+ psych (>= 4.0.0)
112
+ regexp_parser (2.9.2)
113
+ reline (0.5.8)
114
+ io-console (~> 0.5)
115
+ request_store (1.7.0)
116
+ rack (>= 1.4)
117
+ rexml (3.2.8)
118
+ strscan (>= 3.0.9)
119
+ rspec (3.13.0)
120
+ rspec-core (~> 3.13.0)
121
+ rspec-expectations (~> 3.13.0)
122
+ rspec-mocks (~> 3.13.0)
123
+ rspec-core (3.13.0)
124
+ rspec-support (~> 3.13.0)
125
+ rspec-expectations (3.13.0)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.13.0)
128
+ rspec-mocks (3.13.1)
129
+ diff-lcs (>= 1.2.0, < 2.0)
130
+ rspec-support (~> 3.13.0)
131
+ rspec-support (3.13.1)
132
+ rubocop (1.64.1)
133
+ json (~> 2.3)
134
+ language_server-protocol (>= 3.17.0)
135
+ parallel (~> 1.10)
136
+ parser (>= 3.3.0.2)
137
+ rainbow (>= 2.2.2, < 4.0)
138
+ regexp_parser (>= 1.8, < 3.0)
139
+ rexml (>= 3.2.5, < 4.0)
140
+ rubocop-ast (>= 1.31.1, < 2.0)
141
+ ruby-progressbar (~> 1.7)
142
+ unicode-display_width (>= 2.4.0, < 3.0)
143
+ rubocop-ast (1.31.3)
144
+ parser (>= 3.3.1.0)
145
+ rubocop-capybara (2.20.0)
146
+ rubocop (~> 1.41)
147
+ rubocop-factory_bot (2.25.1)
148
+ rubocop (~> 1.41)
149
+ rubocop-rake (0.6.0)
150
+ rubocop (~> 1.0)
151
+ rubocop-rspec (2.30.0)
152
+ rubocop (~> 1.40)
153
+ rubocop-capybara (~> 2.17)
154
+ rubocop-factory_bot (~> 2.22)
155
+ rubocop-rspec_rails (~> 2.28)
156
+ rubocop-rspec_rails (2.28.3)
157
+ rubocop (~> 1.40)
158
+ ruby-progressbar (1.13.0)
159
+ stringio (3.1.0)
160
+ strscan (3.1.0)
161
+ thor (1.3.1)
162
+ timeout (0.4.1)
163
+ tzinfo (2.0.6)
164
+ concurrent-ruby (~> 1.0)
165
+ unicode-display_width (2.5.0)
166
+ webrick (1.8.1)
167
+ zeitwerk (2.6.15)
168
+
169
+ PLATFORMS
170
+ x86_64-darwin-22
171
+
172
+ DEPENDENCIES
173
+ bp3-paper_trail!
174
+ byebug
175
+ rake (~> 13.0)
176
+ rspec (~> 3.0)
177
+ rubocop (~> 1.21)
178
+ rubocop-rake (~> 0.6)
179
+ rubocop-rspec (~> 2.25)
180
+
181
+ BUNDLED WITH
182
+ 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,49 @@
1
+ # Bp3::PaperTrail
2
+
3
+ bp3-railties adapts `paper_trail` 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-paper_trail'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle install
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install bp3-paper_trail
21
+
22
+ ## Usage
23
+
24
+ In your application's `config/initializers/bp3-paper_trail` initializer, specify the name of the class
25
+ that stores version records:
26
+ ```ruby
27
+ Bp3::PaperTrail.version_class_name = 'Version'
28
+ ```
29
+
30
+ ## Development
31
+
32
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run
33
+ `rake spec` to run the tests. You can also run `bin/console` for an interactive
34
+ prompt that will allow you to experiment.
35
+
36
+ To install this gem onto your local machine, run `rake install`. To release a new
37
+ version, update the version number in `version.rb`, and then run `rake release`,
38
+ which will create a git tag for the version, push git commits and the created tag,
39
+ and push the `.gem` file to [rubygems.org](https://rubygems.org).
40
+
41
+ ## Testing
42
+ Run `rake` to run rspec tests and rubocop linting.
43
+
44
+ ## Documentation
45
+ A `.yardopts` file is provided to support yard documentation.
46
+
47
+ ## License
48
+
49
+ 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/paper_trail/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'bp3-paper_trail'
7
+ spec.version = Bp3::PaperTrail::VERSION
8
+ spec.authors = ['Wim den Braven']
9
+ spec.email = ['wimdenbraven@persuavis.com']
10
+
11
+ spec.summary = 'bp3-paper_trail adapts paper_trail 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-paper_trail'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/persuavis/bp3-paper_trail/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 'actionpack', ['>= 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 'paper_trail', '~> 15.1'
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,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rails/railtie'
4
+
5
+ module Bp3
6
+ module PaperTrail
7
+ class Railtie < Rails::Railtie
8
+ initializer 'bp3.paper_trail.railtie.register' do |app|
9
+ app.config.after_initialize do
10
+ ::PaperTrail::ModelConfig # preload
11
+ ::PaperTrail::Version # preload
12
+ module ::PaperTrail
13
+ # reopen ModelConfig to override version_class
14
+ class ModelConfig
15
+ def version_class
16
+ ::Bp3::PaperTrail.version_class
17
+ end
18
+ end
19
+
20
+ class Version
21
+ include Bp3::Core::Ransackable
22
+ include Bp3::Core::Displayable
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bp3
4
+ module PaperTrail
5
+ VERSION = '0.1.1'
6
+ end
7
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/module/attribute_accessors'
4
+ require 'active_support/inflector'
5
+
6
+ require_relative 'paper_trail/railtie'
7
+ require_relative 'paper_trail/version'
8
+
9
+ module Bp3
10
+ module PaperTrail
11
+ mattr_accessor :version_class_name
12
+
13
+ def self.version_class
14
+ @@version_class ||= version_class_name.constantize # rubocop:disable Style/ClassVars
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bp3/paper_trail'
@@ -0,0 +1,6 @@
1
+ module Bp3
2
+ module PaperTrail
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-paper_trail
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: actionpack
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: paper_trail
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '15.1'
80
+ type: :runtime
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '15.1'
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-paper_trail.gemspec
208
+ - lib/bp3-paper_trail.rb
209
+ - lib/bp3/paper_trail.rb
210
+ - lib/bp3/paper_trail/railtie.rb
211
+ - lib/bp3/paper_trail/version.rb
212
+ - sig/bp3/paper_trail.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-paper_trail
220
+ changelog_uri: https://github.com/persuavis/bp3-paper_trail/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-paper_trail adapts paper_trail for BP3 (persuavis/black_phoebe_3).
241
+ test_files: []