wallaby 6.1.5 → 7.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/fonts/FontAwesome.otf +0 -0
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/fonts/summernote.eot +0 -0
- data/app/assets/fonts/summernote.hash +1 -0
- data/app/assets/fonts/summernote.ttf +0 -0
- data/app/assets/fonts/summernote.woff +0 -0
- data/app/assets/fonts/summernote.woff2 +0 -0
- data/app/assets/javascripts/wallaby/base.js +1 -17
- data/app/assets/javascripts/wallaby/core.js +46172 -0
- data/app/assets/javascripts/wallaby/core.js.map +7 -0
- data/app/assets/javascripts/wallaby/{setup.js.erb → setup.js} +17 -5
- data/app/assets/stylesheets/wallaby/base/_fonts.scss +22 -0
- data/app/assets/stylesheets/wallaby/base/_functions.scss +15 -29
- data/app/assets/stylesheets/wallaby/base/_mixins.scss +7 -7
- data/app/assets/stylesheets/wallaby/base.scss +2 -8
- data/app/assets/stylesheets/wallaby/core.scss +12139 -0
- data/app/assets/stylesheets/wallaby/pages/_index.scss +1 -1
- data/app/javascript/wallaby/core.js +23 -0
- data/app/javascript/wallaby/globals.js +9 -0
- data/app/stylesheets/wallaby/core.scss +15 -0
- data/app/views/layouts/wallaby/resources.html.erb +1 -3
- data/app/views/wallaby/resources/_edit_page.html.erb +20 -0
- data/app/views/wallaby/resources/_form.html.erb +7 -1
- data/app/views/wallaby/resources/_frontend.html.erb +2 -3
- data/app/views/wallaby/resources/_home_page.html.erb +5 -0
- data/app/views/wallaby/resources/_index_page.html.erb +59 -0
- data/app/views/wallaby/resources/_index_query.html.erb +2 -2
- data/app/views/wallaby/resources/_new_page.html.erb +19 -0
- data/app/views/wallaby/resources/_show_page.html.erb +42 -0
- data/app/views/wallaby/resources/edit.html.erb +1 -18
- data/app/views/wallaby/resources/error.json.jbuilder +1 -0
- data/app/views/wallaby/resources/form/_belongs_to.html.erb +1 -1
- data/app/views/wallaby/resources/form/_citext.html.erb +1 -1
- data/app/views/wallaby/resources/form/_color.html.erb +1 -1
- data/app/views/wallaby/resources/form/_date.html.erb +1 -1
- data/app/views/wallaby/resources/form/_daterange.html.erb +1 -1
- data/app/views/wallaby/resources/form/_datetime.html.erb +1 -1
- data/app/views/wallaby/resources/form/_has_and_belongs_to_many.html.erb +1 -1
- data/app/views/wallaby/resources/form/_has_many.html.erb +1 -1
- data/app/views/wallaby/resources/form/_hstore.html.erb +1 -1
- data/app/views/wallaby/resources/form/_json.html.erb +1 -1
- data/app/views/wallaby/resources/form/_jsonb.html.erb +1 -1
- data/app/views/wallaby/resources/form/_longtext.html.erb +1 -1
- data/app/views/wallaby/resources/form/_markdown.html.erb +1 -1
- data/app/views/wallaby/resources/form/_mediumtext.html.erb +1 -1
- data/app/views/wallaby/resources/form/_text.html.erb +1 -1
- data/app/views/wallaby/resources/form/_time.html.erb +1 -1
- data/app/views/wallaby/resources/form/_tinytext.html.erb +1 -1
- data/app/views/wallaby/resources/form/_tsrange.html.erb +1 -1
- data/app/views/wallaby/resources/form/_tstzrange.html.erb +1 -1
- data/app/views/wallaby/resources/form/_xml.html.erb +1 -1
- data/app/views/wallaby/resources/home.html.erb +1 -5
- data/app/views/wallaby/resources/index/_box.html.erb +1 -1
- data/app/views/wallaby/resources/index/_circle.html.erb +1 -1
- data/app/views/wallaby/resources/index/_citext.html.erb +1 -1
- data/app/views/wallaby/resources/index/_dollar.html.erb +5 -0
- data/app/views/wallaby/resources/index/_hstore.html.erb +1 -1
- data/app/views/wallaby/resources/index/_json.html.erb +1 -1
- data/app/views/wallaby/resources/index/_jsonb.html.erb +1 -1
- data/app/views/wallaby/resources/index/_line.html.erb +1 -1
- data/app/views/wallaby/resources/index/_longtext.html.erb +1 -1
- data/app/views/wallaby/resources/index/_lseg.html.erb +1 -1
- data/app/views/wallaby/resources/index/_ltree.html.erb +1 -1
- data/app/views/wallaby/resources/index/_mediumtext.html.erb +1 -1
- data/app/views/wallaby/resources/index/_path.html.erb +1 -1
- data/app/views/wallaby/resources/index/_percent.html.erb +10 -0
- data/app/views/wallaby/resources/index/_polygon.html.erb +1 -1
- data/app/views/wallaby/resources/index/_sti.html.erb +1 -1
- data/app/views/wallaby/resources/index/_string.html.erb +1 -1
- data/app/views/wallaby/resources/index/_text.html.erb +1 -1
- data/app/views/wallaby/resources/index/_tinytext.html.erb +1 -1
- data/app/views/wallaby/resources/index/_tsvector.html.erb +1 -1
- data/app/views/wallaby/resources/index/_uuid.html.erb +1 -1
- data/app/views/wallaby/resources/index/_xml.html.erb +1 -1
- data/app/views/wallaby/resources/index.csv.erb +7 -1
- data/app/views/wallaby/resources/index.html.erb +1 -54
- data/app/views/wallaby/resources/new.html.erb +1 -18
- data/app/views/wallaby/resources/show/_active_storage.html.erb +5 -0
- data/app/views/wallaby/resources/show.html.erb +1 -35
- data/lib/generators/wallaby/engine/partials/USAGE +23 -0
- data/lib/generators/wallaby/engine/partials/partials_generator.rb +25 -0
- data/lib/generators/wallaby/install/install_generator.rb +1 -54
- data/lib/wallaby/ui_engine.rb +3 -2
- data/lib/wallaby/version.rb +1 -1
- data/lib/wallaby/views.rb +2 -11
- metadata +45 -122
- data/app/assets/stylesheets/wallaby/summernote.scss.erb +0 -7
- data/lib/generators/wallaby/install/templates/application_authorizer.rb.erb +0 -40
- data/lib/generators/wallaby/install/templates/application_controller.rb.erb +0 -148
- data/lib/generators/wallaby/install/templates/application_decorator.rb.erb +0 -10
- data/lib/generators/wallaby/install/templates/application_paginator.rb.erb +0 -30
- data/lib/generators/wallaby/install/templates/application_servicer.rb.erb +0 -50
- data/lib/generators/wallaby/install/templates/initializer.rb.erb +0 -58
- /data/app/views/wallaby/resources/{_active_storage.html.erb → index/_active_storage.html.erb} +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wallaby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.0.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tianwen Chen
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: wallaby-core
|
@@ -28,58 +28,16 @@ dependencies:
|
|
28
28
|
name: wallaby-active_record
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.3.0.beta1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: bootstrap
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '4.6'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '4.6'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: bootstrap4-datetime-picker-rails
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :runtime
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: font-awesome-sass
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :runtime
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
40
|
+
version: 0.3.0.beta1
|
83
41
|
- !ruby/object:Gem::Dependency
|
84
42
|
name: jbuilder
|
85
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,48 +52,6 @@ dependencies:
|
|
94
52
|
- - ">="
|
95
53
|
- !ruby/object:Gem::Version
|
96
54
|
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: jquery-minicolors-rails
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :runtime
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: jquery-rails
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :runtime
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: momentjs-rails
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - ">="
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '0'
|
132
|
-
type: :runtime
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - ">="
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '0'
|
139
55
|
- !ruby/object:Gem::Dependency
|
140
56
|
name: sass-rails
|
141
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -151,21 +67,7 @@ dependencies:
|
|
151
67
|
- !ruby/object:Gem::Version
|
152
68
|
version: '0'
|
153
69
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
156
|
-
requirements:
|
157
|
-
- - ">="
|
158
|
-
- !ruby/object:Gem::Version
|
159
|
-
version: '0'
|
160
|
-
type: :runtime
|
161
|
-
prerelease: false
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
163
|
-
requirements:
|
164
|
-
- - ">="
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: twitter-typeahead-rails
|
70
|
+
name: sprockets-rails
|
169
71
|
requirement: !ruby/object:Gem::Requirement
|
170
72
|
requirements:
|
171
73
|
- - ">="
|
@@ -179,7 +81,7 @@ dependencies:
|
|
179
81
|
- !ruby/object:Gem::Version
|
180
82
|
version: '0'
|
181
83
|
- !ruby/object:Gem::Dependency
|
182
|
-
name:
|
84
|
+
name: foreman
|
183
85
|
requirement: !ruby/object:Gem::Requirement
|
184
86
|
requirements:
|
185
87
|
- - ">="
|
@@ -193,7 +95,7 @@ dependencies:
|
|
193
95
|
- !ruby/object:Gem::Version
|
194
96
|
version: '0'
|
195
97
|
- !ruby/object:Gem::Dependency
|
196
|
-
name: wallaby-
|
98
|
+
name: wallaby-cop
|
197
99
|
requirement: !ruby/object:Gem::Requirement
|
198
100
|
requirements:
|
199
101
|
- - ">="
|
@@ -215,6 +117,17 @@ extensions: []
|
|
215
117
|
extra_rdoc_files: []
|
216
118
|
files:
|
217
119
|
- LICENSE
|
120
|
+
- app/assets/fonts/FontAwesome.otf
|
121
|
+
- app/assets/fonts/fontawesome-webfont.eot
|
122
|
+
- app/assets/fonts/fontawesome-webfont.svg
|
123
|
+
- app/assets/fonts/fontawesome-webfont.ttf
|
124
|
+
- app/assets/fonts/fontawesome-webfont.woff
|
125
|
+
- app/assets/fonts/fontawesome-webfont.woff2
|
126
|
+
- app/assets/fonts/summernote.eot
|
127
|
+
- app/assets/fonts/summernote.hash
|
128
|
+
- app/assets/fonts/summernote.ttf
|
129
|
+
- app/assets/fonts/summernote.woff
|
130
|
+
- app/assets/fonts/summernote.woff2
|
218
131
|
- app/assets/images/wallaby/bad_request.png
|
219
132
|
- app/assets/images/wallaby/forbidden.png
|
220
133
|
- app/assets/images/wallaby/internal_server_error.png
|
@@ -225,9 +138,12 @@ files:
|
|
225
138
|
- app/assets/javascripts/wallaby/application.js
|
226
139
|
- app/assets/javascripts/wallaby/auto_select.js
|
227
140
|
- app/assets/javascripts/wallaby/base.js
|
228
|
-
- app/assets/javascripts/wallaby/
|
141
|
+
- app/assets/javascripts/wallaby/core.js
|
142
|
+
- app/assets/javascripts/wallaby/core.js.map
|
143
|
+
- app/assets/javascripts/wallaby/setup.js
|
229
144
|
- app/assets/stylesheets/wallaby/application.scss
|
230
145
|
- app/assets/stylesheets/wallaby/base.scss
|
146
|
+
- app/assets/stylesheets/wallaby/base/_fonts.scss
|
231
147
|
- app/assets/stylesheets/wallaby/base/_functions.scss
|
232
148
|
- app/assets/stylesheets/wallaby/base/_layout.scss
|
233
149
|
- app/assets/stylesheets/wallaby/base/_layout_desktop.scss
|
@@ -242,31 +158,38 @@ files:
|
|
242
158
|
- app/assets/stylesheets/wallaby/components/_pagination.scss
|
243
159
|
- app/assets/stylesheets/wallaby/components/_query.scss
|
244
160
|
- app/assets/stylesheets/wallaby/components/_text.scss
|
161
|
+
- app/assets/stylesheets/wallaby/core.scss
|
245
162
|
- app/assets/stylesheets/wallaby/pages/_error.scss
|
246
163
|
- app/assets/stylesheets/wallaby/pages/_form.scss
|
247
164
|
- app/assets/stylesheets/wallaby/pages/_index.scss
|
248
165
|
- app/assets/stylesheets/wallaby/pages/_index_desktop.scss
|
249
166
|
- app/assets/stylesheets/wallaby/pages/_show.scss
|
250
167
|
- app/assets/stylesheets/wallaby/pages/_show_desktop.scss
|
251
|
-
- app/
|
168
|
+
- app/javascript/wallaby/core.js
|
169
|
+
- app/javascript/wallaby/globals.js
|
170
|
+
- app/stylesheets/wallaby/core.scss
|
252
171
|
- app/views/layouts/wallaby/resources.csv.erb
|
253
172
|
- app/views/layouts/wallaby/resources.html.erb
|
254
173
|
- app/views/layouts/wallaby/resources.json.erb
|
255
|
-
- app/views/wallaby/resources/
|
174
|
+
- app/views/wallaby/resources/_edit_page.html.erb
|
256
175
|
- app/views/wallaby/resources/_flash_messages.html.erb
|
257
176
|
- app/views/wallaby/resources/_footer.html.erb
|
258
177
|
- app/views/wallaby/resources/_form.html.erb
|
259
178
|
- app/views/wallaby/resources/_frontend.html.erb
|
260
179
|
- app/views/wallaby/resources/_header.html.erb
|
180
|
+
- app/views/wallaby/resources/_home_page.html.erb
|
261
181
|
- app/views/wallaby/resources/_imodal.html.erb
|
262
182
|
- app/views/wallaby/resources/_index_actions.html.erb
|
263
183
|
- app/views/wallaby/resources/_index_filters.html.erb
|
184
|
+
- app/views/wallaby/resources/_index_page.html.erb
|
264
185
|
- app/views/wallaby/resources/_index_pagination.html.erb
|
265
186
|
- app/views/wallaby/resources/_index_query.html.erb
|
266
187
|
- app/views/wallaby/resources/_logo.html.erb
|
267
188
|
- app/views/wallaby/resources/_navs.html.erb
|
189
|
+
- app/views/wallaby/resources/_new_page.html.erb
|
268
190
|
- app/views/wallaby/resources/_resource_actions.html.erb
|
269
191
|
- app/views/wallaby/resources/_resource_navs.html.erb
|
192
|
+
- app/views/wallaby/resources/_show_page.html.erb
|
270
193
|
- app/views/wallaby/resources/_title.html.erb
|
271
194
|
- app/views/wallaby/resources/_user_menu.html.erb
|
272
195
|
- app/views/wallaby/resources/bad_request.json.jbuilder
|
@@ -341,6 +264,7 @@ files:
|
|
341
264
|
- app/views/wallaby/resources/index.csv.erb
|
342
265
|
- app/views/wallaby/resources/index.html.erb
|
343
266
|
- app/views/wallaby/resources/index.json.jbuilder
|
267
|
+
- app/views/wallaby/resources/index/_active_storage.html.erb
|
344
268
|
- app/views/wallaby/resources/index/_belongs_to.csv.erb
|
345
269
|
- app/views/wallaby/resources/index/_belongs_to.html.erb
|
346
270
|
- app/views/wallaby/resources/index/_bigint.csv.erb
|
@@ -375,6 +299,7 @@ files:
|
|
375
299
|
- app/views/wallaby/resources/index/_datetime.html.erb
|
376
300
|
- app/views/wallaby/resources/index/_decimal.csv.erb
|
377
301
|
- app/views/wallaby/resources/index/_decimal.html.erb
|
302
|
+
- app/views/wallaby/resources/index/_dollar.html.erb
|
378
303
|
- app/views/wallaby/resources/index/_email.csv.erb
|
379
304
|
- app/views/wallaby/resources/index/_email.html.erb
|
380
305
|
- app/views/wallaby/resources/index/_float.csv.erb
|
@@ -425,6 +350,7 @@ files:
|
|
425
350
|
- app/views/wallaby/resources/index/_password.html.erb
|
426
351
|
- app/views/wallaby/resources/index/_path.csv.erb
|
427
352
|
- app/views/wallaby/resources/index/_path.html.erb
|
353
|
+
- app/views/wallaby/resources/index/_percent.html.erb
|
428
354
|
- app/views/wallaby/resources/index/_point.csv.erb
|
429
355
|
- app/views/wallaby/resources/index/_point.html.erb
|
430
356
|
- app/views/wallaby/resources/index/_polygon.csv.erb
|
@@ -466,6 +392,7 @@ files:
|
|
466
392
|
- app/views/wallaby/resources/new.html.erb
|
467
393
|
- app/views/wallaby/resources/show.html.erb
|
468
394
|
- app/views/wallaby/resources/show.json.jbuilder
|
395
|
+
- app/views/wallaby/resources/show/_active_storage.html.erb
|
469
396
|
- app/views/wallaby/resources/show/_belongs_to.html.erb
|
470
397
|
- app/views/wallaby/resources/show/_bigint.html.erb
|
471
398
|
- app/views/wallaby/resources/show/_bigserial.html.erb
|
@@ -531,14 +458,10 @@ files:
|
|
531
458
|
- config/brakeman.ignore
|
532
459
|
- config/massa.yml
|
533
460
|
- config/rails_best_practices.yml
|
461
|
+
- lib/generators/wallaby/engine/partials/USAGE
|
462
|
+
- lib/generators/wallaby/engine/partials/partials_generator.rb
|
534
463
|
- lib/generators/wallaby/install/USAGE
|
535
464
|
- lib/generators/wallaby/install/install_generator.rb
|
536
|
-
- lib/generators/wallaby/install/templates/application_authorizer.rb.erb
|
537
|
-
- lib/generators/wallaby/install/templates/application_controller.rb.erb
|
538
|
-
- lib/generators/wallaby/install/templates/application_decorator.rb.erb
|
539
|
-
- lib/generators/wallaby/install/templates/application_paginator.rb.erb
|
540
|
-
- lib/generators/wallaby/install/templates/application_servicer.rb.erb
|
541
|
-
- lib/generators/wallaby/install/templates/initializer.rb.erb
|
542
465
|
- lib/wallaby.rb
|
543
466
|
- lib/wallaby/ui_engine.rb
|
544
467
|
- lib/wallaby/version.rb
|
@@ -962,7 +885,7 @@ homepage: https://github.com/wallaby-rails/wallaby
|
|
962
885
|
licenses:
|
963
886
|
- MIT
|
964
887
|
metadata: {}
|
965
|
-
post_install_message:
|
888
|
+
post_install_message:
|
966
889
|
rdoc_options: []
|
967
890
|
require_paths:
|
968
891
|
- lib
|
@@ -973,12 +896,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
973
896
|
version: '0'
|
974
897
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
975
898
|
requirements:
|
976
|
-
- - "
|
899
|
+
- - ">"
|
977
900
|
- !ruby/object:Gem::Version
|
978
|
-
version:
|
901
|
+
version: 1.3.1
|
979
902
|
requirements: []
|
980
|
-
rubygems_version: 3.
|
981
|
-
signing_key:
|
903
|
+
rubygems_version: 3.3.25
|
904
|
+
signing_key:
|
982
905
|
specification_version: 4
|
983
906
|
summary: Autocomplete the resourceful actions and views for ORMs for admin interface
|
984
907
|
and other purposes.
|
@@ -1,7 +0,0 @@
|
|
1
|
-
<%
|
2
|
-
# NOTE: we have a problem with summernote.css that
|
3
|
-
# we need to dynamically convert it to a scss format
|
4
|
-
# The reason is hard to explain, so let it be :P
|
5
|
-
css_file = "#{ Gem.loaded_specs['summernote-rails'].full_gem_path }/vendor/assets/stylesheets/summernote.css"
|
6
|
-
%>
|
7
|
-
<%= File.open(css_file, "r").read %>
|
@@ -1,40 +0,0 @@
|
|
1
|
-
module <%= class_name %>
|
2
|
-
# @see https://github.com/wallaby-rails/wallaby/blob/master/docs/authorizer.md
|
3
|
-
class ApplicationAuthorizer < Wallaby::ModelAuthorizer
|
4
|
-
# # base/abstract class?
|
5
|
-
# base_class!
|
6
|
-
|
7
|
-
# # set namespace
|
8
|
-
# self.namespace = '<%= class_name %>'
|
9
|
-
|
10
|
-
# specify which provider (:cancancan, :pundit or :default) to use.
|
11
|
-
# :default means no authorization will be in use.
|
12
|
-
# self.provider_name = :cancancan
|
13
|
-
|
14
|
-
# Check user's permission for given action on given subject.
|
15
|
-
# Raise Wallaby::Forbidden if user doesn't have permission
|
16
|
-
# def authorize(action, subject)
|
17
|
-
# super # do something for all the subclasses
|
18
|
-
# end
|
19
|
-
|
20
|
-
# Check and see if user is allowed to perform an action on given subject.
|
21
|
-
# def authorized?(action, subject)
|
22
|
-
# super # do something for all the subclasses
|
23
|
-
# end
|
24
|
-
|
25
|
-
# Restrict user to access certain scope.
|
26
|
-
# def accessible_for(action, scope)
|
27
|
-
# super # do something for all the subclasses
|
28
|
-
# end
|
29
|
-
|
30
|
-
# Restrict user to assign certain values.
|
31
|
-
# def attributes_for(action, subject)
|
32
|
-
# super # do something for all the subclasses
|
33
|
-
# end
|
34
|
-
|
35
|
-
# Restrict user to permit parameters.
|
36
|
-
# def permit_params(action, subject)
|
37
|
-
# super # do something for all the subclasses
|
38
|
-
# end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,148 +0,0 @@
|
|
1
|
-
module <%= class_name %>
|
2
|
-
# @see https://github.com/wallaby-rails/wallaby/blob/master/docs/controller.md
|
3
|
-
class ApplicationController < Wallaby::ResourcesController
|
4
|
-
# # base/abstract class?
|
5
|
-
# base_class!
|
6
|
-
|
7
|
-
# # set namespace
|
8
|
-
# self.namespace = '<%= class_name %>'
|
9
|
-
|
10
|
-
# # configure the responder
|
11
|
-
# self.responder = Wallaby::ResourcesResponder
|
12
|
-
|
13
|
-
# # theming
|
14
|
-
# self.theme_name = '<%= file_name %>/application'
|
15
|
-
|
16
|
-
# # engine
|
17
|
-
# self.engine_name = 'admin'
|
18
|
-
|
19
|
-
# # specify the application/base decorator
|
20
|
-
# self.application_decorator = <%= class_name %>::ApplicationDecorator
|
21
|
-
|
22
|
-
# # specify the application/base servicer
|
23
|
-
# self.application_servicer = <%= class_name %>::ApplicationServicer
|
24
|
-
|
25
|
-
# # specify the application/base authorizer
|
26
|
-
# self.application_authorizer = <%= class_name %>::ApplicationAuthorizer
|
27
|
-
|
28
|
-
# # specify the application/base paginator
|
29
|
-
# self.application_paginator = <%= class_name %>::ApplicationPaginator
|
30
|
-
|
31
|
-
# # customize how user should be authenticated
|
32
|
-
# def authenticate_user!
|
33
|
-
# super # do something for all the subclasses
|
34
|
-
# end
|
35
|
-
|
36
|
-
# # customize how user record should be returned
|
37
|
-
# def wallaby_user
|
38
|
-
# super # do something for all the subclasses
|
39
|
-
# end
|
40
|
-
|
41
|
-
# # landing page
|
42
|
-
# def home
|
43
|
-
# super # do something for all the subclasses
|
44
|
-
# end
|
45
|
-
|
46
|
-
# # for index page
|
47
|
-
# def index
|
48
|
-
# # do something before the origin action
|
49
|
-
# index!(
|
50
|
-
# location: nil # where to redirect when successful
|
51
|
-
# ) do |format| # `respond_with` block
|
52
|
-
# # do something here before rendering
|
53
|
-
# end
|
54
|
-
# end
|
55
|
-
|
56
|
-
# # for new page
|
57
|
-
# def new
|
58
|
-
# # do something before the origin action
|
59
|
-
# new!(
|
60
|
-
# location: nil # where to redirect when successful
|
61
|
-
# ) do |format| # `respond_with` block
|
62
|
-
# # do something here before rendering
|
63
|
-
# end
|
64
|
-
# end
|
65
|
-
|
66
|
-
# # for create action
|
67
|
-
# def create
|
68
|
-
# # do something before the origin action
|
69
|
-
# create!(
|
70
|
-
# params: nil, # params to use for the servicer
|
71
|
-
# location: nil # where to redirect when successful
|
72
|
-
# ) do |format| # `respond_with` block
|
73
|
-
# # do something here before rendering
|
74
|
-
# end
|
75
|
-
# end
|
76
|
-
|
77
|
-
# # for show page
|
78
|
-
# def show
|
79
|
-
# # do something before the origin action
|
80
|
-
# show!(
|
81
|
-
# location: nil # where to redirect when successful
|
82
|
-
# ) do |format| # `respond_with` block
|
83
|
-
# # do something here before rendering
|
84
|
-
# end
|
85
|
-
# end
|
86
|
-
|
87
|
-
# # for edit page
|
88
|
-
# def edit
|
89
|
-
# # do something before the origin action
|
90
|
-
# edit!(
|
91
|
-
# location: nil # where to redirect when successful
|
92
|
-
# ) do |format| # `respond_with` block
|
93
|
-
# # do something here before rendering
|
94
|
-
# end
|
95
|
-
# end
|
96
|
-
|
97
|
-
# # for update action
|
98
|
-
# def update
|
99
|
-
# # do something before the origin action
|
100
|
-
# update!(
|
101
|
-
# params: nil, # params to use for the servicer
|
102
|
-
# location: nil # where to redirect when successful
|
103
|
-
# ) do |format| # `respond_with` block
|
104
|
-
# # do something here before rendering
|
105
|
-
# end
|
106
|
-
# end
|
107
|
-
|
108
|
-
# # for destroy action
|
109
|
-
# def destroy
|
110
|
-
# # do something before the origin action
|
111
|
-
# destroy!(
|
112
|
-
# params: nil, # params to use for the servicer
|
113
|
-
# location: nil # where to redirect when successful
|
114
|
-
# ) do |format| # `respond_with` block
|
115
|
-
# # do something here before rendering
|
116
|
-
# end
|
117
|
-
# end
|
118
|
-
|
119
|
-
# # customize how parameters should be white-listed for mass assignment
|
120
|
-
# def resource_params
|
121
|
-
# super # something for all the subclasses
|
122
|
-
# end
|
123
|
-
|
124
|
-
# # customize how collection should be returned
|
125
|
-
# def collection
|
126
|
-
# collection!(
|
127
|
-
# params: nil, # params to use for the servicer
|
128
|
-
# paginate: true # whether to paginate the collection
|
129
|
-
# ) do |records|
|
130
|
-
# # do something here after origin query is completed
|
131
|
-
# # but before `@collection` instance variable is set
|
132
|
-
# records
|
133
|
-
# end
|
134
|
-
# end
|
135
|
-
|
136
|
-
# # customize how resource should be returned
|
137
|
-
# def resource
|
138
|
-
# resource!(
|
139
|
-
# find_params: nil, # params/options for servicer's `find` action
|
140
|
-
# new_params: nil # params/options for servicer's `new` action
|
141
|
-
# ) do |record|
|
142
|
-
# # do something here after origin query is completed
|
143
|
-
# # but before `@resource` instance variable is set
|
144
|
-
# record
|
145
|
-
# end
|
146
|
-
# end
|
147
|
-
end
|
148
|
-
end
|
@@ -1,10 +0,0 @@
|
|
1
|
-
module <%= class_name %>
|
2
|
-
# @see https://github.com/wallaby-rails/wallaby/blob/master/docs/decorator.md
|
3
|
-
class ApplicationDecorator < Wallaby::ResourceDecorator
|
4
|
-
# # base/abstract class?
|
5
|
-
# base_class!
|
6
|
-
|
7
|
-
# # set namespace
|
8
|
-
# self.namespace = '<%= class_name %>'
|
9
|
-
end
|
10
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
module <%= class_name %>
|
2
|
-
# @see https://github.com/wallaby-rails/wallaby/blob/master/docs/paginator.md
|
3
|
-
class ApplicationPaginator < Wallaby::ModelPaginator
|
4
|
-
# # base/abstract class?
|
5
|
-
# base_class!
|
6
|
-
|
7
|
-
# # set namespace
|
8
|
-
# self.namespace = '<%= class_name %>'
|
9
|
-
|
10
|
-
# # Check if the collection can be paginated
|
11
|
-
# def paginatable?
|
12
|
-
# super # do something for all the subclasses
|
13
|
-
# end
|
14
|
-
|
15
|
-
# # Total count of the collection
|
16
|
-
# def total
|
17
|
-
# super # do something for all the subclasses
|
18
|
-
# end
|
19
|
-
|
20
|
-
# # Page size
|
21
|
-
# def page_size
|
22
|
-
# super # do something for all the subclasses
|
23
|
-
# end
|
24
|
-
|
25
|
-
# # Page number
|
26
|
-
# def page_number
|
27
|
-
# super # do something for all the subclasses
|
28
|
-
# end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
module <%= class_name %>
|
2
|
-
# @see https://github.com/wallaby-rails/wallaby/blob/master/docs/servicer.md
|
3
|
-
class ApplicationServicer < Wallaby::ModelServicer
|
4
|
-
# # base/abstract class?
|
5
|
-
# base_class!
|
6
|
-
|
7
|
-
# # set namespace
|
8
|
-
# self.namespace = '<%= class_name %>'
|
9
|
-
|
10
|
-
# # To whitelist parameters for mass assignment
|
11
|
-
# def permit(params, action)
|
12
|
-
# super # do something for all the subclasses
|
13
|
-
# end
|
14
|
-
|
15
|
-
# # Fetch collection by params
|
16
|
-
# def collection(params)
|
17
|
-
# super # do something for all the subclasses
|
18
|
-
# end
|
19
|
-
|
20
|
-
# # Paginate the collection
|
21
|
-
# def paginate(query, params)
|
22
|
-
# super # do something for all the subclasses
|
23
|
-
# end
|
24
|
-
|
25
|
-
# # Initialize the model class using params
|
26
|
-
# def new(params)
|
27
|
-
# super # do something for all the subclasses
|
28
|
-
# end
|
29
|
-
|
30
|
-
# # Find a resource using id
|
31
|
-
# def find(id, params)
|
32
|
-
# super # do something for all the subclasses
|
33
|
-
# end
|
34
|
-
|
35
|
-
# # Save the newly initialized resource
|
36
|
-
# def create(resource, params)
|
37
|
-
# super # do something for all the subclasses
|
38
|
-
# end
|
39
|
-
|
40
|
-
# # Update the persisted resource
|
41
|
-
# def update(resource, params)
|
42
|
-
# super # do something for all the subclasses
|
43
|
-
# end
|
44
|
-
|
45
|
-
# # Destroy the given resource
|
46
|
-
# def destroy(resource, params)
|
47
|
-
# super # do something for all the subclasses
|
48
|
-
# end
|
49
|
-
end
|
50
|
-
end
|
@@ -1,58 +0,0 @@
|
|
1
|
-
Wallaby.config do |config|
|
2
|
-
# Configure the base controller class that Wallaby should inherit from:
|
3
|
-
# config.base_controller = ::ApplicationController
|
4
|
-
|
5
|
-
# To provide support for non ActiveModel like (ActiveRecord/Her) classes:
|
6
|
-
# config.custom_models = [Array]
|
7
|
-
|
8
|
-
# To refine what model classes Wallaby should take care:
|
9
|
-
# config.models = [Product, Order]
|
10
|
-
|
11
|
-
# for authentication
|
12
|
-
# To configure how `current_user` should be returned
|
13
|
-
# config.security.current_user do
|
14
|
-
# User.find_by_email session[:user_email]
|
15
|
-
# end
|
16
|
-
|
17
|
-
# To configure how `current_user` should be authenticated
|
18
|
-
# config.security.authenticate do
|
19
|
-
# authenticate_or_request_with_http_basic do |username, password|
|
20
|
-
# username == 'too_simple' && password == 'too_naive'
|
21
|
-
# end
|
22
|
-
# end
|
23
|
-
|
24
|
-
# To specify which method to return email for user portrait display using gravatar
|
25
|
-
# config.security.email_method = :email
|
26
|
-
|
27
|
-
# To specify which path Wallaby can use to logout a user
|
28
|
-
# config.security.logout_path = :logout_path
|
29
|
-
|
30
|
-
# To specify the http verb Wallaby can use to logout a user
|
31
|
-
# config.security.logout_method = :delete
|
32
|
-
|
33
|
-
# To specify base application controller for Wallaby
|
34
|
-
<%= commenting %>config.mapping.resources_controller = <%= class_name %>::ApplicationController
|
35
|
-
|
36
|
-
# To specify base application decorator for Wallaby
|
37
|
-
<%= commenting %>config.mapping.resource_decorator = <%= class_name %>::ApplicationDecorator
|
38
|
-
|
39
|
-
# To specify base application servicer for Wallaby
|
40
|
-
<%= commenting %>config.mapping.model_servicer = <%= class_name %>::ApplicationServicer
|
41
|
-
|
42
|
-
# To specify base application authorizer for Wallaby
|
43
|
-
# config.mapping.model_authorizer = <%= class_name %>::ApplicationAuthorizer
|
44
|
-
|
45
|
-
# To specify base application paginator for Wallaby
|
46
|
-
# config.mapping.model_paginator = <%= class_name %>::ApplicationPaginator
|
47
|
-
|
48
|
-
# To specify the max number of characters to truncate for index page
|
49
|
-
# config.metadata.max = 20
|
50
|
-
|
51
|
-
# To specify the default page size for pagination on index page
|
52
|
-
# config.pagination.page_size = 20
|
53
|
-
|
54
|
-
# To specify the sorting strategy to use, and valid values are:
|
55
|
-
# :multiple - default value, allowing sorting on multiple columns
|
56
|
-
# :single - sorting is allowed only on one column
|
57
|
-
# config.sorting.strategy = :single
|
58
|
-
end
|
/data/app/views/wallaby/resources/{_active_storage.html.erb → index/_active_storage.html.erb}
RENAMED
File without changes
|