bp3-formtastic 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: badca2d2bd57d4a8e74bf01fb63699e98b556e9bde9bacf841493003085218a5
4
+ data.tar.gz: 71e33e1a799e9b1a4329f1e8470056dfd75ee3c6a816f703f0559487de8063ff
5
+ SHA512:
6
+ metadata.gz: c2c5fe8aa33f2389357a510b7fc50383924369cf27d7177391bd389fbb6c5b54a56a44cec8109536680941d658c98c948bd22a14bfab11ab5346e6b57ac8e607
7
+ data.tar.gz: ed2e4a9f370d0dde477a0e72c7ce8b660da795b9fcc00fea36ce3865d276875169b0f05e4d54544fe0dce024cd515311b6ffaaf77e1ffa0dfb7e01f3ab8041cc
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-formtastic"
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-05-31
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-formtastic.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,139 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bp3-formtastic (0.1.1)
5
+ actionpack (>= 7.1.2, < 8)
6
+ activesupport (>= 7.1.2, < 8)
7
+ formtastic (~> 5.0)
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
+ activesupport (7.1.3)
29
+ base64
30
+ bigdecimal
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ connection_pool (>= 2.2.5)
33
+ drb
34
+ i18n (>= 1.6, < 2)
35
+ minitest (>= 5.1)
36
+ mutex_m
37
+ tzinfo (~> 2.0)
38
+ ast (2.4.2)
39
+ base64 (0.2.0)
40
+ bigdecimal (3.1.6)
41
+ builder (3.2.4)
42
+ byebug (11.1.3)
43
+ concurrent-ruby (1.2.3)
44
+ connection_pool (2.4.1)
45
+ crass (1.0.6)
46
+ diff-lcs (1.5.0)
47
+ drb (2.2.0)
48
+ ruby2_keywords
49
+ erubi (1.12.0)
50
+ formtastic (5.0.0)
51
+ actionpack (>= 6.0.0)
52
+ i18n (1.14.1)
53
+ concurrent-ruby (~> 1.0)
54
+ json (2.7.1)
55
+ language_server-protocol (3.17.0.3)
56
+ loofah (2.22.0)
57
+ crass (~> 1.0.2)
58
+ nokogiri (>= 1.12.0)
59
+ minitest (5.21.2)
60
+ mutex_m (0.2.0)
61
+ nokogiri (1.16.0-x86_64-darwin)
62
+ racc (~> 1.4)
63
+ parallel (1.24.0)
64
+ parser (3.3.0.4)
65
+ ast (~> 2.4.1)
66
+ racc
67
+ racc (1.7.3)
68
+ rack (3.0.8)
69
+ rack-session (2.0.0)
70
+ rack (>= 3.0.0)
71
+ rack-test (2.1.0)
72
+ rack (>= 1.3)
73
+ rails-dom-testing (2.2.0)
74
+ activesupport (>= 5.0.0)
75
+ minitest
76
+ nokogiri (>= 1.6)
77
+ rails-html-sanitizer (1.6.0)
78
+ loofah (~> 2.21)
79
+ nokogiri (~> 1.14)
80
+ rainbow (3.1.1)
81
+ rake (13.1.0)
82
+ regexp_parser (2.9.0)
83
+ rexml (3.2.6)
84
+ rspec (3.12.0)
85
+ rspec-core (~> 3.12.0)
86
+ rspec-expectations (~> 3.12.0)
87
+ rspec-mocks (~> 3.12.0)
88
+ rspec-core (3.12.2)
89
+ rspec-support (~> 3.12.0)
90
+ rspec-expectations (3.12.3)
91
+ diff-lcs (>= 1.2.0, < 2.0)
92
+ rspec-support (~> 3.12.0)
93
+ rspec-mocks (3.12.6)
94
+ diff-lcs (>= 1.2.0, < 2.0)
95
+ rspec-support (~> 3.12.0)
96
+ rspec-support (3.12.1)
97
+ rubocop (1.60.1)
98
+ json (~> 2.3)
99
+ language_server-protocol (>= 3.17.0)
100
+ parallel (~> 1.10)
101
+ parser (>= 3.3.0.2)
102
+ rainbow (>= 2.2.2, < 4.0)
103
+ regexp_parser (>= 1.8, < 3.0)
104
+ rexml (>= 3.2.5, < 4.0)
105
+ rubocop-ast (>= 1.30.0, < 2.0)
106
+ ruby-progressbar (~> 1.7)
107
+ unicode-display_width (>= 2.4.0, < 3.0)
108
+ rubocop-ast (1.30.0)
109
+ parser (>= 3.2.1.0)
110
+ rubocop-capybara (2.20.0)
111
+ rubocop (~> 1.41)
112
+ rubocop-factory_bot (2.25.1)
113
+ rubocop (~> 1.41)
114
+ rubocop-rake (0.6.0)
115
+ rubocop (~> 1.0)
116
+ rubocop-rspec (2.26.1)
117
+ rubocop (~> 1.40)
118
+ rubocop-capybara (~> 2.17)
119
+ rubocop-factory_bot (~> 2.22)
120
+ ruby-progressbar (1.13.0)
121
+ ruby2_keywords (0.0.5)
122
+ tzinfo (2.0.6)
123
+ concurrent-ruby (~> 1.0)
124
+ unicode-display_width (2.5.0)
125
+
126
+ PLATFORMS
127
+ x86_64-darwin-22
128
+
129
+ DEPENDENCIES
130
+ bp3-formtastic!
131
+ byebug
132
+ rake (~> 13.0)
133
+ rspec (~> 3.0)
134
+ rubocop (~> 1.21)
135
+ rubocop-rake (~> 0.6)
136
+ rubocop-rspec (~> 2.25)
137
+
138
+ BUNDLED WITH
139
+ 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,48 @@
1
+ # Bp3::Formtastic
2
+
3
+ bp3-formtastic adapts formtastic 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-formtastic'
12
+ ```
13
+
14
+ And then execute:
15
+
16
+ $ bundle install
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install bp3-formtastic
21
+
22
+ ## Usage
23
+
24
+ In your application's `config/initializers/bp3-action_dispatch` initializer, specify the name of the class
25
+ that controls whether to show a formtastic input control or not:
26
+ ```ruby
27
+ Bp3::Formtastic.input_control_class_name = 'Vizfact::Input'
28
+ ```
29
+ ## Development
30
+
31
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run
32
+ `rake spec` to run the tests. You can also run `bin/console` for an interactive
33
+ prompt that will allow you to experiment.
34
+
35
+ To install this gem onto your local machine, run `rake install`. To release a
36
+ new version, update the version number in `version.rb`, and then run
37
+ `rake release`, which will create a git tag for the version, push git
38
+ commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+
40
+ ## Testing
41
+ Run `rake` to run rspec tests and rubocop linting.
42
+
43
+ ## Documentation
44
+ A `.yardopts` file is provided to support yard documentation.
45
+
46
+ ## License
47
+
48
+ 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,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/bp3/formtastic/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'bp3-formtastic'
7
+ spec.version = Bp3::Formtastic::VERSION
8
+ spec.authors = ['Wim den Braven']
9
+ spec.email = ['wimdenbraven@persuavis.com']
10
+
11
+ spec.summary = 'bp3-formtastic adapts formtastic 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-formtastic'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/persuavis/bp3-formtastic/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 'formtastic', '~> 5.0'
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,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bp3
4
+ module Formtastic
5
+ if defined?(Rails.env)
6
+ class Railtie < Rails::Railtie
7
+ initializer 'bp3.formtastic.railtie.register' do |app|
8
+ app.config.after_initialize do
9
+ ::Formtastic::Inputs # preload
10
+ module ::Formtastic
11
+ module Inputs
12
+ EXCLUDED_COLUMNS = %w[rqid sqnr].freeze
13
+ UUID_REGEX = /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
14
+
15
+ # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
16
+ # PrependInputs provides formtastic input overrides
17
+ module PrependInputs
18
+ def input_wrapping(&)
19
+ return super if column.nil? # e.g. when called for individual details fields
20
+ return nil if column.name.in?(EXCLUDED_COLUMNS)
21
+
22
+ # url = template.controller.request.url
23
+ site = template.controller.send(:current_site)
24
+ # tenant = template.controller.send(:current_tenant)
25
+ # workspace = template.controller.send(:current_workspace)
26
+ controller = template.controller.class.name
27
+ action = template.controller.action_name
28
+ builder.id.gsub(/_#{UUID_REGEX}/, '')
29
+ # puts "input_wrapping s:#{site.id} c:#{controller} a:#{action} " \
30
+ # "e:#{method} n:#{field_name} as:#{options[:as].inspect}"
31
+
32
+ viz = input_control_class.where(sites_site: site,
33
+ element_controller: controller,
34
+ element_action: action,
35
+ element_name: field_name)
36
+ .or(input_control_class.where(sites_site: site,
37
+ element_controller: controller,
38
+ element_action: action,
39
+ element_ident: dom_id)).first
40
+ return nil if viz.present? && !viz.show_element
41
+
42
+ super
43
+ end
44
+
45
+ private
46
+
47
+ def input_control_class
48
+ Bp3::Formtastic.input_control_class
49
+ end
50
+
51
+ def field_name
52
+ "#{object_name}[#{input_name}]"
53
+ end
54
+ end
55
+ # rubocop:enable Metrics/MethodLength, Metrics/AbcSize
56
+
57
+ module Base
58
+ prepend PrependInputs
59
+ end
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bp3
4
+ module Formtastic
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 'formtastic/railtie'
7
+ require_relative 'formtastic/version'
8
+
9
+ module Bp3
10
+ module Formtastic
11
+ mattr_accessor :input_control_class_name
12
+
13
+ def self.input_control_class
14
+ @@input_control_class ||= input_control_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/formtastic'
@@ -0,0 +1,6 @@
1
+ module Bp3
2
+ module Formtastic
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,201 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bp3-formtastic
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: 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: formtastic
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '5.0'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '5.0'
67
+ - !ruby/object:Gem::Dependency
68
+ name: byebug
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ type: :development
75
+ prerelease: false
76
+ version_requirements: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ - !ruby/object:Gem::Dependency
82
+ name: rake
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '13.0'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - "~>"
93
+ - !ruby/object:Gem::Version
94
+ version: '13.0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: rspec
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '3.0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '3.0'
109
+ - !ruby/object:Gem::Dependency
110
+ name: rubocop
111
+ requirement: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - "~>"
114
+ - !ruby/object:Gem::Version
115
+ version: '1.21'
116
+ type: :development
117
+ prerelease: false
118
+ version_requirements: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - "~>"
121
+ - !ruby/object:Gem::Version
122
+ version: '1.21'
123
+ - !ruby/object:Gem::Dependency
124
+ name: rubocop-rake
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '0.6'
130
+ type: :development
131
+ prerelease: false
132
+ version_requirements: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - "~>"
135
+ - !ruby/object:Gem::Version
136
+ version: '0.6'
137
+ - !ruby/object:Gem::Dependency
138
+ name: rubocop-rspec
139
+ requirement: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - "~>"
142
+ - !ruby/object:Gem::Version
143
+ version: '2.25'
144
+ type: :development
145
+ prerelease: false
146
+ version_requirements: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - "~>"
149
+ - !ruby/object:Gem::Version
150
+ version: '2.25'
151
+ description:
152
+ email:
153
+ - wimdenbraven@persuavis.com
154
+ executables: []
155
+ extensions: []
156
+ extra_rdoc_files: []
157
+ files:
158
+ - ".rspec"
159
+ - ".rubocop.yml"
160
+ - ".yardopts"
161
+ - CHANGELOG.md
162
+ - Gemfile
163
+ - Gemfile.lock
164
+ - LICENSE.txt
165
+ - README.md
166
+ - Rakefile
167
+ - bp3-formtastic.gemspec
168
+ - lib/bp3-formtastic.rb
169
+ - lib/bp3/formtastic.rb
170
+ - lib/bp3/formtastic/railtie.rb
171
+ - lib/bp3/formtastic/version.rb
172
+ - sig/bp3/formtastic.rbs
173
+ homepage: https://www.black-phoebe.com
174
+ licenses:
175
+ - MIT
176
+ metadata:
177
+ allowed_push_host: https://rubygems.org
178
+ homepage_uri: https://www.black-phoebe.com
179
+ source_code_uri: https://github.com/persuavis/bp3-formtastic
180
+ changelog_uri: https://github.com/persuavis/bp3-formtastic/blob/main/CHANGELOG.md
181
+ rubygems_mfa_required: 'true'
182
+ post_install_message:
183
+ rdoc_options: []
184
+ require_paths:
185
+ - lib
186
+ required_ruby_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: 3.2.0
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ requirements: []
197
+ rubygems_version: 3.5.11
198
+ signing_key:
199
+ specification_version: 4
200
+ summary: bp3-formtastic adapts formtastic for BP3 (persuavis/black_phoebe_3)..
201
+ test_files: []