bulma_form_rails 0.9.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.
Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/.idea/.gitignore +8 -0
  3. data/.idea/bulma_form_rails.iml +82 -0
  4. data/.idea/inspectionProfiles/Project_Default.xml +6 -0
  5. data/.idea/misc.xml +7 -0
  6. data/.idea/modules.xml +8 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/.rbenv-gemsets +3 -0
  9. data/.ruby-version +1 -0
  10. data/Gemfile +14 -0
  11. data/Gemfile.lock +203 -0
  12. data/LICENSE +29 -0
  13. data/README.md +163 -0
  14. data/Rakefile +11 -0
  15. data/doc/BulmaFormRails/Helpers.html +698 -0
  16. data/doc/BulmaFormRails.html +93 -0
  17. data/doc/created.rid +2 -0
  18. data/doc/css/fonts.css +167 -0
  19. data/doc/css/rdoc.css +639 -0
  20. data/doc/fonts/Lato-Light.ttf +0 -0
  21. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  22. data/doc/fonts/Lato-Regular.ttf +0 -0
  23. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  24. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  25. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  26. data/doc/images/add.png +0 -0
  27. data/doc/images/arrow_up.png +0 -0
  28. data/doc/images/brick.png +0 -0
  29. data/doc/images/brick_link.png +0 -0
  30. data/doc/images/bug.png +0 -0
  31. data/doc/images/bullet_black.png +0 -0
  32. data/doc/images/bullet_toggle_minus.png +0 -0
  33. data/doc/images/bullet_toggle_plus.png +0 -0
  34. data/doc/images/date.png +0 -0
  35. data/doc/images/delete.png +0 -0
  36. data/doc/images/find.png +0 -0
  37. data/doc/images/loadingAnimation.gif +0 -0
  38. data/doc/images/macFFBgHack.png +0 -0
  39. data/doc/images/moderngeosystems_logo.png +0 -0
  40. data/doc/images/package.png +0 -0
  41. data/doc/images/page_green.png +0 -0
  42. data/doc/images/page_white_text.png +0 -0
  43. data/doc/images/page_white_width.png +0 -0
  44. data/doc/images/plugin.png +0 -0
  45. data/doc/images/ruby.png +0 -0
  46. data/doc/images/tag_blue.png +0 -0
  47. data/doc/images/tag_green.png +0 -0
  48. data/doc/images/transparent.png +0 -0
  49. data/doc/images/wrench.png +0 -0
  50. data/doc/images/wrench_orange.png +0 -0
  51. data/doc/images/zoom.png +0 -0
  52. data/doc/index.html +82 -0
  53. data/doc/js/darkfish.js +84 -0
  54. data/doc/js/navigation.js +105 -0
  55. data/doc/js/navigation.js.gz +0 -0
  56. data/doc/js/search.js +110 -0
  57. data/doc/js/search_index.js +1 -0
  58. data/doc/js/search_index.js.gz +0 -0
  59. data/doc/js/searcher.js +229 -0
  60. data/doc/js/searcher.js.gz +0 -0
  61. data/doc/table_of_contents.html +125 -0
  62. data/lib/bulma_form_rails/field_helpers.rb +239 -0
  63. data/lib/bulma_form_rails/form_page_helpers.rb +36 -0
  64. data/lib/bulma_form_rails/header_and_footer_helpers.rb +36 -0
  65. data/lib/bulma_form_rails/javascript/controllers/child_objects_controller.js +66 -0
  66. data/lib/bulma_form_rails/message_box_helpers.rb +25 -0
  67. data/lib/bulma_form_rails/railtie.rb +62 -0
  68. data/lib/bulma_form_rails/subform_helpers.rb +33 -0
  69. data/lib/bulma_form_rails/version.rb +3 -0
  70. data/lib/bulma_form_rails.rb +3 -0
  71. data/lib/generators/bulma_form_rails/pagy_config_generator.rb +15 -0
  72. data/lib/generators/bulma_form_rails/views_generator.rb +19 -0
  73. data/lib/install/bulma_form_rails.rb +13 -0
  74. data/lib/tasks/bulma_form_rails_tasks.rake +30 -0
  75. data/lib/templates/app/views/_form.html.erb +0 -0
  76. data/lib/templates/app/views/bulma_form_rails/_child.html.erb +61 -0
  77. data/lib/templates/app/views/bulma_form_rails/_children.html.erb +61 -0
  78. data/lib/templates/app/views/bulma_form_rails/_datetime_select.html.erb +10 -0
  79. data/lib/templates/app/views/bulma_form_rails/_edit_form_page.html.erb +15 -0
  80. data/lib/templates/app/views/bulma_form_rails/_field.html.erb +10 -0
  81. data/lib/templates/app/views/bulma_form_rails/_form_footer.html.erb +17 -0
  82. data/lib/templates/app/views/bulma_form_rails/_index_header.html.erb +16 -0
  83. data/lib/templates/app/views/bulma_form_rails/_message_box.html.erb +35 -0
  84. data/lib/templates/app/views/bulma_form_rails/_new_form_page.html.erb +15 -0
  85. data/lib/templates/app/views/bulma_form_rails/_radio_group.html.erb +6 -0
  86. data/lib/templates/app/views/bulma_form_rails/_select.html.erb +7 -0
  87. data/lib/templates/app/views/bulma_form_rails/_time_select.html.erb +10 -0
  88. data/lib/templates/app/views/bulma_form_rails/_validation_box.html.erb +15 -0
  89. data/lib/templates/app/views/bulma_form_rails/_value.html.erb +6 -0
  90. data/lib/templates/config/initializers/pagy.rb +211 -0
  91. data/package.json +45 -0
  92. data/sig/bulma_form_helper.rbs +68 -0
  93. data/yarn.lock +53 -0
  94. metadata +291 -0
@@ -0,0 +1,68 @@
1
+ module BulmaFormRails
2
+ module Helper
3
+ # Renders a child objects collection management UI,
4
+ # including row addition and deletion buttons by default.
5
+ def bulma_child_objects: (Array[untyped] collection, String name, Symbol attributes_key, String add_child_path, ?::Hash[untyped, untyped] options) -> untyped
6
+
7
+ # Render the header for a standard index page.
8
+ def bulma_index_header: (Symbol name, String models_path) -> untyped
9
+
10
+ # Render a standard model creation form page.
11
+ def bulma_new_form_page: (Symbol name, RbsRails::ActiveRecord model, String models_path) -> untyped
12
+
13
+ # Render a standard model edit form page.
14
+ def bulma_edit_form_page: (Symbol name, RbsRails::ActiveRecord model, String models_path, String model_path) -> untyped
15
+
16
+ # Render a standard model flash message box.
17
+ def bulma_message_box: () -> untyped
18
+
19
+ # Render a standard model validation box.
20
+ def bulma_validation_box: (RbsRails::ActiveRecord model) -> untyped
21
+
22
+ # Render a standard model form page footer.
23
+ def bulma_form_footer: (untyped form, String models_path, ?::Hash[untyped, untyped] options) { () -> untyped } -> untyped
24
+
25
+ # Render a labeled field with custom content.
26
+ def bulma_custom_field: (untyped form_or_object, Symbol field_name, ?::Hash[untyped, untyped] options) { () -> untyped } -> untyped
27
+
28
+ VALID_INPUT_TYPES: ::Array[:color | :date | :datetime_local | :email | :file | :hidden | :month | :number | :password | :phone | :telephone | :text | :time | :url]
29
+
30
+ # Render a labeled input field.
31
+ def bulma_input: (untyped form_or_object, Symbol field_name, ?::Symbol `type`, ?::Hash[untyped, untyped] options) -> untyped
32
+
33
+ # Render a labeled text area field.
34
+ def bulma_text_area: (untyped form_or_object, Symbol field_name, ?::Hash[untyped, untyped] options) -> untyped
35
+
36
+ # Render a labeled checkbox field.
37
+ def bulma_check_box: (untyped form_or_object, Symbol field_name, ?::Hash[untyped, untyped] options) -> untyped
38
+
39
+ def bulma_radio_group: (untyped form_or_object, Symbol field_name, Array[untyped] choices, ?::Hash[untyped, untyped] options) -> untyped
40
+
41
+ VALID_SELECT_TYPES: ::Array[:collection | :date | :datetime | :general | :grouped_collection | :time | :time_zone | :weekday]
42
+
43
+ # Render a labeled selection field.
44
+ def bulma_select: (untyped form_or_object, Symbol field_name, Array[untyped] choices, ?::Hash[untyped, untyped] options, ?::Hash[untyped, untyped] html_options) -> untyped
45
+
46
+ # Render a labeled date+time selection field.
47
+ def bulma_datetime_select: (untyped form_or_object, Symbol field_name, ?::Hash[untyped, untyped] options, ?::Hash[untyped, untyped] html_options) -> untyped
48
+
49
+ # Render a labeled time selection field.
50
+ def bulma_time_select: (untyped form_or_object, Symbol field_name, ?::Hash[untyped, untyped] options, ?::Hash[untyped, untyped] html_options) -> untyped
51
+
52
+ # Render time selection tags modified for bulma compatibility.
53
+ def bulma_datetime_select_tags: (String html) -> String
54
+
55
+ # Render any form element, regardless of whether a form builder or object name is provided.
56
+ def bulma_form_or_object_component: (untyped form_or_object, Symbol method, ?::Array[untyped] params) -> untyped
57
+
58
+ private
59
+
60
+ def prepare_common_parameters: (Symbol field_name, untyped form_or_object, ?::Hash[untyped, untyped] options) -> { form_or_object: untyped, field_name: untyped, label_parameters: untyped, options: untyped }
61
+
62
+ # Grab and purge the textual field label from options if specified.
63
+ def prepare_label_parameters: (Symbol field_name, ?::Hash[untyped, untyped] options) -> untyped
64
+
65
+ # Grab and purge value CSS classes from options if specified.
66
+ def prepare_value_class!: (?::Hash[untyped, untyped] options, ?base_class: untyped) -> untyped
67
+ end
68
+ end
data/yarn.lock ADDED
@@ -0,0 +1,53 @@
1
+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
+ # yarn lockfile v1
3
+
4
+
5
+ "@hotwired/stimulus-webpack-helpers@^1.0.0":
6
+ "integrity" "sha512-wa/zupVG0eWxRYJjC1IiPBdt3Lruv0RqGN+/DTMmUWUyMAEB27KXmVY6a8YpUVTM7QwVuaLNGW4EqDgrS2upXQ=="
7
+ "resolved" "https://registry.npmjs.org/@hotwired/stimulus-webpack-helpers/-/stimulus-webpack-helpers-1.0.1.tgz"
8
+ "version" "1.0.1"
9
+
10
+ "@hotwired/stimulus@^3.1.0", "@hotwired/stimulus@>= 3.0":
11
+ "integrity" "sha512-iDMHUhiEJ1xFeicyHcZQQgBzhtk5mPR0QZO3L6wtqzMsJEk2TKECuCQTGKjm+KJTHVY0dKq1dOOAWvODjpd2Mg=="
12
+ "resolved" "https://registry.npmjs.org/@hotwired/stimulus/-/stimulus-3.1.0.tgz"
13
+ "version" "3.1.0"
14
+
15
+ "@hotwired/turbo@^7.1.0":
16
+ "integrity" "sha512-Q8kGjqwPqER+CtpQudbH+3Zgs2X4zb6pBAlr6NsKTXadg45pAOvxI9i4QpuHbwSzR2+x87HUm+rot9F/Pe8rxA=="
17
+ "resolved" "https://registry.npmjs.org/@hotwired/turbo/-/turbo-7.1.0.tgz"
18
+ "version" "7.1.0"
19
+
20
+ "@rails/request.js@^0.0.6":
21
+ "integrity" "sha512-dfFWaQXitYJ4kxrgGJNhDNXX54/v10YgoJqBMVe6lhqs6a4N9WD7goZJEvwin82TtK8MqUNhwfyisgKwM6dMdg=="
22
+ "resolved" "https://registry.npmjs.org/@rails/request.js/-/request.js-0.0.6.tgz"
23
+ "version" "0.0.6"
24
+
25
+ "bulma-popover@^1.1.1":
26
+ "integrity" "sha512-QvYJq04usgiCvTwnEZr/xtStkKRTToO/tc7JVcdtRBIBBWNaUu4tfHAOFXDMav8NFIvN8JOiQEtHO1dHNvVr1Q=="
27
+ "resolved" "https://registry.npmjs.org/bulma-popover/-/bulma-popover-1.1.1.tgz"
28
+ "version" "1.1.1"
29
+
30
+ "bulma@^0.9.4":
31
+ "integrity" "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
32
+ "resolved" "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz"
33
+ "version" "0.9.4"
34
+
35
+ "bulmahead@^1.3.0":
36
+ "integrity" "sha512-WOTKlNsPglCIrTDLHsrqYJXwtPfCDlSHi4RDs4DsCICzEwyRlQxD/KUzyjjvYiKG7+4cFYTLOcFIg/o2S7yHRg=="
37
+ "resolved" "https://registry.npmjs.org/bulmahead/-/bulmahead-1.3.0.tgz"
38
+ "version" "1.3.0"
39
+ dependencies:
40
+ "lodash" "^4.17.13"
41
+
42
+ "lodash@^4.17.13":
43
+ "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
44
+ "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
45
+ "version" "4.17.21"
46
+
47
+ "stimulus@^3.0.1":
48
+ "integrity" "sha512-ln+BtLkhemwJozr5N3I5q0kGlSv6fmcPi3JtDjBo7gnnz2tAYhK2WBhyY/EN/4+CWIwqp3qPm3Pc+i9CjIXrtg=="
49
+ "resolved" "https://registry.npmjs.org/stimulus/-/stimulus-3.1.0.tgz"
50
+ "version" "3.1.0"
51
+ dependencies:
52
+ "@hotwired/stimulus" "^3.1.0"
53
+ "@hotwired/stimulus-webpack-helpers" "^1.0.0"
metadata ADDED
@@ -0,0 +1,291 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bulma_form_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.1
5
+ platform: ruby
6
+ authors:
7
+ - Kevin Weller
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-09-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 7.0.4
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 7.0.4
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 13.0.6
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 13.0.6
41
+ - !ruby/object:Gem::Dependency
42
+ name: turbo-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.1.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.1.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: stimulus-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 1.1.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 1.1.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: pagy
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '5.10'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '5.10'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rexml
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 3.2.5
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 3.2.5
97
+ - !ruby/object:Gem::Dependency
98
+ name: jsbundling-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.0.3
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.0.3
111
+ - !ruby/object:Gem::Dependency
112
+ name: debug
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 1.6.2
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 1.6.2
125
+ - !ruby/object:Gem::Dependency
126
+ name: rbs_rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: 0.11.0
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: 0.11.0
139
+ - !ruby/object:Gem::Dependency
140
+ name: rdoc
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: 6.4.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 6.4.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: minitest
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '5.0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '5.0'
167
+ description: With this gem, you can efficiently create beautiful index and form pages,
168
+ and form fields with labels using the Bulma CSS library. You can also create embedded,
169
+ editable multi-object subforms.
170
+ email:
171
+ - kweller@moderngeosystems.com
172
+ executables: []
173
+ extensions: []
174
+ extra_rdoc_files: []
175
+ files:
176
+ - ".idea/.gitignore"
177
+ - ".idea/bulma_form_rails.iml"
178
+ - ".idea/inspectionProfiles/Project_Default.xml"
179
+ - ".idea/misc.xml"
180
+ - ".idea/modules.xml"
181
+ - ".idea/vcs.xml"
182
+ - ".rbenv-gemsets"
183
+ - ".ruby-version"
184
+ - Gemfile
185
+ - Gemfile.lock
186
+ - LICENSE
187
+ - README.md
188
+ - Rakefile
189
+ - doc/BulmaFormRails.html
190
+ - doc/BulmaFormRails/Helpers.html
191
+ - doc/created.rid
192
+ - doc/css/fonts.css
193
+ - doc/css/rdoc.css
194
+ - doc/fonts/Lato-Light.ttf
195
+ - doc/fonts/Lato-LightItalic.ttf
196
+ - doc/fonts/Lato-Regular.ttf
197
+ - doc/fonts/Lato-RegularItalic.ttf
198
+ - doc/fonts/SourceCodePro-Bold.ttf
199
+ - doc/fonts/SourceCodePro-Regular.ttf
200
+ - doc/images/add.png
201
+ - doc/images/arrow_up.png
202
+ - doc/images/brick.png
203
+ - doc/images/brick_link.png
204
+ - doc/images/bug.png
205
+ - doc/images/bullet_black.png
206
+ - doc/images/bullet_toggle_minus.png
207
+ - doc/images/bullet_toggle_plus.png
208
+ - doc/images/date.png
209
+ - doc/images/delete.png
210
+ - doc/images/find.png
211
+ - doc/images/loadingAnimation.gif
212
+ - doc/images/macFFBgHack.png
213
+ - doc/images/moderngeosystems_logo.png
214
+ - doc/images/package.png
215
+ - doc/images/page_green.png
216
+ - doc/images/page_white_text.png
217
+ - doc/images/page_white_width.png
218
+ - doc/images/plugin.png
219
+ - doc/images/ruby.png
220
+ - doc/images/tag_blue.png
221
+ - doc/images/tag_green.png
222
+ - doc/images/transparent.png
223
+ - doc/images/wrench.png
224
+ - doc/images/wrench_orange.png
225
+ - doc/images/zoom.png
226
+ - doc/index.html
227
+ - doc/js/darkfish.js
228
+ - doc/js/navigation.js
229
+ - doc/js/navigation.js.gz
230
+ - doc/js/search.js
231
+ - doc/js/search_index.js
232
+ - doc/js/search_index.js.gz
233
+ - doc/js/searcher.js
234
+ - doc/js/searcher.js.gz
235
+ - doc/table_of_contents.html
236
+ - lib/bulma_form_rails.rb
237
+ - lib/bulma_form_rails/field_helpers.rb
238
+ - lib/bulma_form_rails/form_page_helpers.rb
239
+ - lib/bulma_form_rails/header_and_footer_helpers.rb
240
+ - lib/bulma_form_rails/javascript/controllers/child_objects_controller.js
241
+ - lib/bulma_form_rails/message_box_helpers.rb
242
+ - lib/bulma_form_rails/railtie.rb
243
+ - lib/bulma_form_rails/subform_helpers.rb
244
+ - lib/bulma_form_rails/version.rb
245
+ - lib/generators/bulma_form_rails/pagy_config_generator.rb
246
+ - lib/generators/bulma_form_rails/views_generator.rb
247
+ - lib/install/bulma_form_rails.rb
248
+ - lib/tasks/bulma_form_rails_tasks.rake
249
+ - lib/templates/app/views/_form.html.erb
250
+ - lib/templates/app/views/bulma_form_rails/_child.html.erb
251
+ - lib/templates/app/views/bulma_form_rails/_children.html.erb
252
+ - lib/templates/app/views/bulma_form_rails/_datetime_select.html.erb
253
+ - lib/templates/app/views/bulma_form_rails/_edit_form_page.html.erb
254
+ - lib/templates/app/views/bulma_form_rails/_field.html.erb
255
+ - lib/templates/app/views/bulma_form_rails/_form_footer.html.erb
256
+ - lib/templates/app/views/bulma_form_rails/_index_header.html.erb
257
+ - lib/templates/app/views/bulma_form_rails/_message_box.html.erb
258
+ - lib/templates/app/views/bulma_form_rails/_new_form_page.html.erb
259
+ - lib/templates/app/views/bulma_form_rails/_radio_group.html.erb
260
+ - lib/templates/app/views/bulma_form_rails/_select.html.erb
261
+ - lib/templates/app/views/bulma_form_rails/_time_select.html.erb
262
+ - lib/templates/app/views/bulma_form_rails/_validation_box.html.erb
263
+ - lib/templates/app/views/bulma_form_rails/_value.html.erb
264
+ - lib/templates/config/initializers/pagy.rb
265
+ - package.json
266
+ - sig/bulma_form_helper.rbs
267
+ - yarn.lock
268
+ homepage: https://github.com/modgeosys/bulma_form_rails
269
+ licenses:
270
+ - BSD-3-Clause
271
+ metadata: {}
272
+ post_install_message:
273
+ rdoc_options: []
274
+ require_paths:
275
+ - lib
276
+ required_ruby_version: !ruby/object:Gem::Requirement
277
+ requirements:
278
+ - - ">="
279
+ - !ruby/object:Gem::Version
280
+ version: 3.1.2
281
+ required_rubygems_version: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - ">="
284
+ - !ruby/object:Gem::Version
285
+ version: '0'
286
+ requirements: []
287
+ rubygems_version: 3.3.22
288
+ signing_key:
289
+ specification_version: 4
290
+ summary: Rails helpers for efficiently building forms with the Bulma CSS library
291
+ test_files: []