bp3-activestorage 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +51 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +164 -0
- data/LICENSE.txt +21 -0
- data/README.md +45 -0
- data/Rakefile +12 -0
- data/bp3-activestorage.gemspec +48 -0
- data/lib/bp3/activestorage/railtie.rb +94 -0
- data/lib/bp3/activestorage/version.rb +7 -0
- data/lib/bp3/activestorage.rb +9 -0
- data/lib/bp3-activestorage.rb +3 -0
- data/sig/bp3/activestorage.rbs +6 -0
- metadata +195 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5e5c67003411959eb9a46ed29f88d43805422aff300e11b26891f94642beadc8
|
4
|
+
data.tar.gz: fe3712363cffc7ace5a83f6b18f4c5c6e1bba9fa2cfa0f21557519e204086866
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 81d7eb9157e499bb9f82330c9c782c74cea00551390a704aafc85aa14b295c02dc31df244e9f46492ca80160d4a25afcdb789a4cca6de0fd3796048e1d41f7c4
|
7
|
+
data.tar.gz: 2bf61b92f8374745e0b4f622b4fde047474b284ccb2ee567c06e10debe5e9600b386cfc5a6e0a8d09a368d40ce3a07eb7a30ee80824d3ad9082c34901aca0fda
|
data/.rspec
ADDED
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
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,164 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
bp3-activestorage (0.1.1)
|
5
|
+
activestorage (~> 7.1)
|
6
|
+
bp3-core (>= 0.1.0, < 2)
|
7
|
+
paper_trail (~> 15.1)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionpack (7.1.3)
|
13
|
+
actionview (= 7.1.3)
|
14
|
+
activesupport (= 7.1.3)
|
15
|
+
nokogiri (>= 1.8.5)
|
16
|
+
racc
|
17
|
+
rack (>= 2.2.4)
|
18
|
+
rack-session (>= 1.0.1)
|
19
|
+
rack-test (>= 0.6.3)
|
20
|
+
rails-dom-testing (~> 2.2)
|
21
|
+
rails-html-sanitizer (~> 1.6)
|
22
|
+
actionview (7.1.3)
|
23
|
+
activesupport (= 7.1.3)
|
24
|
+
builder (~> 3.1)
|
25
|
+
erubi (~> 1.11)
|
26
|
+
rails-dom-testing (~> 2.2)
|
27
|
+
rails-html-sanitizer (~> 1.6)
|
28
|
+
activejob (7.1.3)
|
29
|
+
activesupport (= 7.1.3)
|
30
|
+
globalid (>= 0.3.6)
|
31
|
+
activemodel (7.1.3)
|
32
|
+
activesupport (= 7.1.3)
|
33
|
+
activerecord (7.1.3)
|
34
|
+
activemodel (= 7.1.3)
|
35
|
+
activesupport (= 7.1.3)
|
36
|
+
timeout (>= 0.4.0)
|
37
|
+
activestorage (7.1.3)
|
38
|
+
actionpack (= 7.1.3)
|
39
|
+
activejob (= 7.1.3)
|
40
|
+
activerecord (= 7.1.3)
|
41
|
+
activesupport (= 7.1.3)
|
42
|
+
marcel (~> 1.0)
|
43
|
+
activesupport (7.1.3)
|
44
|
+
base64
|
45
|
+
bigdecimal
|
46
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
47
|
+
connection_pool (>= 2.2.5)
|
48
|
+
drb
|
49
|
+
i18n (>= 1.6, < 2)
|
50
|
+
minitest (>= 5.1)
|
51
|
+
mutex_m
|
52
|
+
tzinfo (~> 2.0)
|
53
|
+
ast (2.4.2)
|
54
|
+
base64 (0.2.0)
|
55
|
+
bigdecimal (3.1.6)
|
56
|
+
bp3-core (0.1.2)
|
57
|
+
actionview (>= 7.1.2, < 8)
|
58
|
+
activesupport (>= 7.1.2, < 8)
|
59
|
+
builder (3.2.4)
|
60
|
+
byebug (11.1.3)
|
61
|
+
concurrent-ruby (1.2.3)
|
62
|
+
connection_pool (2.4.1)
|
63
|
+
crass (1.0.6)
|
64
|
+
diff-lcs (1.5.0)
|
65
|
+
drb (2.2.0)
|
66
|
+
ruby2_keywords
|
67
|
+
erubi (1.12.0)
|
68
|
+
globalid (1.2.1)
|
69
|
+
activesupport (>= 6.1)
|
70
|
+
i18n (1.14.1)
|
71
|
+
concurrent-ruby (~> 1.0)
|
72
|
+
json (2.7.1)
|
73
|
+
language_server-protocol (3.17.0.3)
|
74
|
+
loofah (2.22.0)
|
75
|
+
crass (~> 1.0.2)
|
76
|
+
nokogiri (>= 1.12.0)
|
77
|
+
marcel (1.0.2)
|
78
|
+
minitest (5.21.2)
|
79
|
+
mutex_m (0.2.0)
|
80
|
+
nokogiri (1.16.0-x86_64-darwin)
|
81
|
+
racc (~> 1.4)
|
82
|
+
paper_trail (15.1.0)
|
83
|
+
activerecord (>= 6.1)
|
84
|
+
request_store (~> 1.4)
|
85
|
+
parallel (1.24.0)
|
86
|
+
parser (3.3.0.4)
|
87
|
+
ast (~> 2.4.1)
|
88
|
+
racc
|
89
|
+
racc (1.7.3)
|
90
|
+
rack (3.0.8)
|
91
|
+
rack-session (2.0.0)
|
92
|
+
rack (>= 3.0.0)
|
93
|
+
rack-test (2.1.0)
|
94
|
+
rack (>= 1.3)
|
95
|
+
rails-dom-testing (2.2.0)
|
96
|
+
activesupport (>= 5.0.0)
|
97
|
+
minitest
|
98
|
+
nokogiri (>= 1.6)
|
99
|
+
rails-html-sanitizer (1.6.0)
|
100
|
+
loofah (~> 2.21)
|
101
|
+
nokogiri (~> 1.14)
|
102
|
+
rainbow (3.1.1)
|
103
|
+
rake (13.1.0)
|
104
|
+
regexp_parser (2.9.0)
|
105
|
+
request_store (1.5.1)
|
106
|
+
rack (>= 1.4)
|
107
|
+
rexml (3.2.6)
|
108
|
+
rspec (3.12.0)
|
109
|
+
rspec-core (~> 3.12.0)
|
110
|
+
rspec-expectations (~> 3.12.0)
|
111
|
+
rspec-mocks (~> 3.12.0)
|
112
|
+
rspec-core (3.12.2)
|
113
|
+
rspec-support (~> 3.12.0)
|
114
|
+
rspec-expectations (3.12.3)
|
115
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
116
|
+
rspec-support (~> 3.12.0)
|
117
|
+
rspec-mocks (3.12.6)
|
118
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
119
|
+
rspec-support (~> 3.12.0)
|
120
|
+
rspec-support (3.12.1)
|
121
|
+
rubocop (1.60.1)
|
122
|
+
json (~> 2.3)
|
123
|
+
language_server-protocol (>= 3.17.0)
|
124
|
+
parallel (~> 1.10)
|
125
|
+
parser (>= 3.3.0.2)
|
126
|
+
rainbow (>= 2.2.2, < 4.0)
|
127
|
+
regexp_parser (>= 1.8, < 3.0)
|
128
|
+
rexml (>= 3.2.5, < 4.0)
|
129
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
130
|
+
ruby-progressbar (~> 1.7)
|
131
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
132
|
+
rubocop-ast (1.30.0)
|
133
|
+
parser (>= 3.2.1.0)
|
134
|
+
rubocop-capybara (2.20.0)
|
135
|
+
rubocop (~> 1.41)
|
136
|
+
rubocop-factory_bot (2.25.1)
|
137
|
+
rubocop (~> 1.41)
|
138
|
+
rubocop-rake (0.6.0)
|
139
|
+
rubocop (~> 1.0)
|
140
|
+
rubocop-rspec (2.26.1)
|
141
|
+
rubocop (~> 1.40)
|
142
|
+
rubocop-capybara (~> 2.17)
|
143
|
+
rubocop-factory_bot (~> 2.22)
|
144
|
+
ruby-progressbar (1.13.0)
|
145
|
+
ruby2_keywords (0.0.5)
|
146
|
+
timeout (0.4.1)
|
147
|
+
tzinfo (2.0.6)
|
148
|
+
concurrent-ruby (~> 1.0)
|
149
|
+
unicode-display_width (2.5.0)
|
150
|
+
|
151
|
+
PLATFORMS
|
152
|
+
x86_64-darwin-22
|
153
|
+
|
154
|
+
DEPENDENCIES
|
155
|
+
bp3-activestorage!
|
156
|
+
byebug
|
157
|
+
rake (~> 13.0)
|
158
|
+
rspec (~> 3.0)
|
159
|
+
rubocop (~> 1.21)
|
160
|
+
rubocop-rake (~> 0.6)
|
161
|
+
rubocop-rspec (~> 2.25)
|
162
|
+
|
163
|
+
BUNDLED WITH
|
164
|
+
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::Activestorage
|
2
|
+
|
3
|
+
bp3-activestorage adapts various `ActiveStorage` classes 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-activestorage'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle install
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install bp3-activestorage
|
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,
|
29
|
+
run `rake spec` to run the tests. You can also run `bin/console` for an
|
30
|
+
interactive 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,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/bp3/activestorage/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'bp3-activestorage'
|
7
|
+
spec.version = Bp3::Activestorage::VERSION
|
8
|
+
spec.authors = ['Wim den Braven']
|
9
|
+
spec.email = ['wimdenbraven@persuavis.com']
|
10
|
+
|
11
|
+
spec.summary = 'bp3-activestorage adapts activestorage 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-activestorage'
|
21
|
+
spec.metadata['changelog_uri'] = 'https://github.com/persuavis/bp3-activestorage/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 'activestorage', '~> 7.1'
|
35
|
+
spec.add_dependency 'paper_trail', '~> 15.1'
|
36
|
+
spec.add_dependency 'bp3-core', ['>= 0.1.0', '< 2']
|
37
|
+
|
38
|
+
spec.add_development_dependency 'byebug'
|
39
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
40
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
41
|
+
spec.add_development_dependency 'rubocop', '~> 1.21'
|
42
|
+
spec.add_development_dependency 'rubocop-rake', '~> 0.6'
|
43
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 2.25'
|
44
|
+
|
45
|
+
# For more information and examples about making a new gem, check out our
|
46
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
47
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
48
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# require 'rails/railtie'
|
4
|
+
|
5
|
+
module Bp3
|
6
|
+
module Activestorage
|
7
|
+
if defined?(Rails.env)
|
8
|
+
class Railtie < Rails::Railtie
|
9
|
+
initializer 'bp3.activestorage.railtie.register' do |app|
|
10
|
+
app.config.after_initialize do
|
11
|
+
::ActiveStorage::Attachment # preload
|
12
|
+
::ActiveStorage::Blob # preload
|
13
|
+
::ActiveStorage::VariantRecord # preload
|
14
|
+
::ActiveStorage::BaseController # preload
|
15
|
+
::ActiveStorage::Representations::ProxyController # preload
|
16
|
+
module ::ActiveStorage
|
17
|
+
# CAUTION: do not include Tenantable, it breaks things (it may set site/tenant behind the scenes,
|
18
|
+
# and sets the default scope, and then later the blob can't be found
|
19
|
+
class Attachment
|
20
|
+
include Bp3::Core::Rqid
|
21
|
+
include Bp3::Core::Sqnr
|
22
|
+
include Bp3::Core::Ransackable
|
23
|
+
|
24
|
+
use_sqnr_for_ordering
|
25
|
+
has_paper_trail
|
26
|
+
|
27
|
+
belongs_to :sites_site, class_name: 'Sites::Site', optional: true
|
28
|
+
alias site sites_site
|
29
|
+
alias site= sites_site=
|
30
|
+
belongs_to :tenant, optional: true
|
31
|
+
end
|
32
|
+
|
33
|
+
class Blob
|
34
|
+
include Bp3::Core::Rqid
|
35
|
+
include Bp3::Core::Sqnr
|
36
|
+
include Bp3::Core::Displayable
|
37
|
+
|
38
|
+
use_sqnr_for_ordering
|
39
|
+
has_paper_trail
|
40
|
+
|
41
|
+
belongs_to :sites_site, class_name: 'Sites::Site', optional: true
|
42
|
+
alias site sites_site
|
43
|
+
alias site= sites_site=
|
44
|
+
belongs_to :tenant, optional: true
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def version_filter_mask
|
49
|
+
'[FILTERED][AB]'
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
class VariantRecord
|
54
|
+
include Bp3::Core::Rqid
|
55
|
+
include Bp3::Core::Sqnr
|
56
|
+
|
57
|
+
use_sqnr_for_ordering
|
58
|
+
has_paper_trail
|
59
|
+
|
60
|
+
belongs_to :sites_site, class_name: 'Sites::Site', optional: true
|
61
|
+
alias site sites_site
|
62
|
+
alias site= sites_site=
|
63
|
+
belongs_to :tenant, optional: true
|
64
|
+
end
|
65
|
+
|
66
|
+
class BaseController
|
67
|
+
include Bp3::Core::Actions
|
68
|
+
include Bp3::Core::Settings
|
69
|
+
include Bp3::Core::FeatureFlags
|
70
|
+
include Bp3::Core::Cookies
|
71
|
+
|
72
|
+
# TODO: is this needed?
|
73
|
+
# before_action :authenticate_root!
|
74
|
+
end
|
75
|
+
|
76
|
+
module Representations
|
77
|
+
class ProxyController
|
78
|
+
include Bp3::Core::Actions
|
79
|
+
include Bp3::Core::Settings
|
80
|
+
include Bp3::Core::FeatureFlags
|
81
|
+
include Bp3::Core::Cookies
|
82
|
+
|
83
|
+
# using authenticate_root! breaks things
|
84
|
+
# TODO: is this needed?
|
85
|
+
# before_action :authenticate_root!
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
metadata
ADDED
@@ -0,0 +1,195 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bp3-activestorage
|
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-05-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activestorage
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '7.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '7.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: paper_trail
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '15.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '15.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bp3-core
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.1.0
|
48
|
+
- - "<"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '2'
|
51
|
+
type: :runtime
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 0.1.0
|
58
|
+
- - "<"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '2'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: byebug
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: rake
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '13.0'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '13.0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: rspec
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '3.0'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '3.0'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: rubocop
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1.21'
|
110
|
+
type: :development
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '1.21'
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: rubocop-rake
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '0.6'
|
124
|
+
type: :development
|
125
|
+
prerelease: false
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "~>"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0.6'
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: rubocop-rspec
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "~>"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '2.25'
|
138
|
+
type: :development
|
139
|
+
prerelease: false
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '2.25'
|
145
|
+
description:
|
146
|
+
email:
|
147
|
+
- wimdenbraven@persuavis.com
|
148
|
+
executables: []
|
149
|
+
extensions: []
|
150
|
+
extra_rdoc_files: []
|
151
|
+
files:
|
152
|
+
- ".rspec"
|
153
|
+
- ".rubocop.yml"
|
154
|
+
- ".yardopts"
|
155
|
+
- CHANGELOG.md
|
156
|
+
- Gemfile
|
157
|
+
- Gemfile.lock
|
158
|
+
- LICENSE.txt
|
159
|
+
- README.md
|
160
|
+
- Rakefile
|
161
|
+
- bp3-activestorage.gemspec
|
162
|
+
- lib/bp3-activestorage.rb
|
163
|
+
- lib/bp3/activestorage.rb
|
164
|
+
- lib/bp3/activestorage/railtie.rb
|
165
|
+
- lib/bp3/activestorage/version.rb
|
166
|
+
- sig/bp3/activestorage.rbs
|
167
|
+
homepage: https://www.black-phoebe.com
|
168
|
+
licenses:
|
169
|
+
- MIT
|
170
|
+
metadata:
|
171
|
+
allowed_push_host: https://rubygems.org
|
172
|
+
homepage_uri: https://www.black-phoebe.com
|
173
|
+
source_code_uri: https://github.com/persuavis/bp3-activestorage
|
174
|
+
changelog_uri: https://github.com/persuavis/bp3-activestorage/blob/main/CHANGELOG.md
|
175
|
+
rubygems_mfa_required: 'true'
|
176
|
+
post_install_message:
|
177
|
+
rdoc_options: []
|
178
|
+
require_paths:
|
179
|
+
- lib
|
180
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
181
|
+
requirements:
|
182
|
+
- - ">="
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: 3.2.0
|
185
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
186
|
+
requirements:
|
187
|
+
- - ">="
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: '0'
|
190
|
+
requirements: []
|
191
|
+
rubygems_version: 3.5.11
|
192
|
+
signing_key:
|
193
|
+
specification_version: 4
|
194
|
+
summary: bp3-activestorage adapts activestorage for BP3 (persuavis/black_phoebe_3).
|
195
|
+
test_files: []
|