administrador 0.0.1.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +73 -0
- data/Rakefile +22 -0
- data/app/assets/config/administrador_manifest.js +2 -0
- data/app/assets/javascripts/administrador/application.js +16 -0
- data/app/assets/stylesheets/administrador/application/bootstrap-btn-responsive.css +7 -0
- data/app/assets/stylesheets/administrador/application/bootstrap-btn-xs.css +6 -0
- data/app/assets/stylesheets/administrador/application/bootstrap-circular-buttons.css +30 -0
- data/app/assets/stylesheets/administrador/application/bootstrap-table-xs.css +7 -0
- data/app/assets/stylesheets/administrador/application/colors.css +7 -0
- data/app/assets/stylesheets/administrador/application/engine-sidebar.css +7 -0
- data/app/assets/stylesheets/administrador/application/layout.css +43 -0
- data/app/assets/stylesheets/administrador/application/page-actions.css +3 -0
- data/app/assets/stylesheets/administrador/application/query_form.css +8 -0
- data/app/assets/stylesheets/administrador/application.css +15 -0
- data/app/concerns/administrador/controller/application_concern.rb +15 -0
- data/app/concerns/administrador/controller/engine_concern.rb +21 -0
- data/app/concerns/administrador/controller/resource_concern.rb +50 -0
- data/app/concerns/administrador/controller/resources_concern.rb +70 -0
- data/app/concerns/administrador/controller/service_concern.rb +17 -0
- data/app/concerns/administrador/engine_routable/localized_concern.rb +21 -0
- data/app/controllers/administrador/application_controller.rb +5 -0
- data/app/controllers/administrador/home_controller/base.rb +7 -0
- data/app/controllers/administrador/home_controller.rb +6 -0
- data/app/controllers/administrador/resource_controller/base.rb +7 -0
- data/app/controllers/administrador/resources_controller/base.rb +7 -0
- data/app/controllers/administrador/service_controller/base.rb +7 -0
- data/app/controllers/administrador/sidebar_controller/base.rb +17 -0
- data/app/jobs/administrador/application_job.rb +4 -0
- data/app/mailers/administrador/application_mailer.rb +6 -0
- data/app/models/administrador/application_record.rb +5 -0
- data/app/view_helpers/administrador/application_view_helper.rb +44 -0
- data/app/view_helpers/administrador/breadcrumbs_view_helper.rb +59 -0
- data/app/view_helpers/administrador/offcanvas_view_helper.rb +8 -0
- data/app/views/administrador/application/_main_sidebar_right.html.haml +1 -0
- data/app/views/administrador/application/_navbar.html.haml +14 -0
- data/app/views/administrador/application/sidebars/_engine.html.haml +32 -0
- data/app/views/administrador/application/sidebars/_i18n.html.haml +8 -0
- data/app/views/administrador/application/sidebars/_messages.html.haml +5 -0
- data/app/views/administrador/application/sidebars/_notifications.html.haml +5 -0
- data/app/views/administrador/application/sidebars/_search.html.haml +5 -0
- data/app/views/administrador/application/sidebars/_settings.html.haml +5 -0
- data/app/views/administrador/application/sidebars/_user.html.haml +5 -0
- data/app/views/administrador/application_view_helper/_flash_messages.html.haml +3 -0
- data/app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml +4 -0
- data/app/views/administrador/home/_html_head_extras.html.haml +0 -0
- data/app/views/administrador/home/index.de.html.haml +6 -0
- data/app/views/administrador/home/index.en.html.haml +6 -0
- data/app/views/administrador/home_controller/base/_html_head_extras.html.haml +0 -0
- data/app/views/administrador/home_controller/base/index.html.haml +3 -0
- data/app/views/administrador/resource_controller/base/_after_show_table.html.haml +0 -0
- data/app/views/administrador/resource_controller/base/_before_show_table.html.haml +0 -0
- data/app/views/administrador/resource_controller/base/_edit_actions.html.haml +7 -0
- data/app/views/administrador/resource_controller/base/_form.html.haml +8 -0
- data/app/views/administrador/resource_controller/base/_form_buttons.html.haml +1 -0
- data/app/views/administrador/resource_controller/base/_form_errors.html.haml +6 -0
- data/app/views/administrador/resource_controller/base/_html_head_extras.html.haml +0 -0
- data/app/views/administrador/resource_controller/base/_new_actions.html.haml +3 -0
- data/app/views/administrador/resource_controller/base/_show_actions.html.haml +6 -0
- data/app/views/administrador/resource_controller/base/_show_table.html.haml +2 -0
- data/app/views/administrador/resource_controller/base/edit.html.haml +14 -0
- data/app/views/administrador/resource_controller/base/new.html.haml +14 -0
- data/app/views/administrador/resource_controller/base/show.html.haml +19 -0
- data/app/views/administrador/resources_controller/base/_after_index_table.html.haml +0 -0
- data/app/views/administrador/resources_controller/base/_after_show_table.html.haml +0 -0
- data/app/views/administrador/resources_controller/base/_before_index_table.html.haml +0 -0
- data/app/views/administrador/resources_controller/base/_before_show_table.html.haml +0 -0
- data/app/views/administrador/resources_controller/base/_edit_actions.html.haml +7 -0
- data/app/views/administrador/resources_controller/base/_form.html.haml +10 -0
- data/app/views/administrador/resources_controller/base/_form_buttons.html.haml +1 -0
- data/app/views/administrador/resources_controller/base/_form_errors.html.haml +6 -0
- data/app/views/administrador/resources_controller/base/_html_head_extras.html.haml +0 -0
- data/app/views/administrador/resources_controller/base/_index_actions.html.haml +4 -0
- data/app/views/administrador/resources_controller/base/_index_table.html.haml +2 -0
- data/app/views/administrador/resources_controller/base/_index_table_actions.html.haml +16 -0
- data/app/views/administrador/resources_controller/base/_index_table_actions.html.haml~ +16 -0
- data/app/views/administrador/resources_controller/base/_new_actions.html.haml +3 -0
- data/app/views/administrador/resources_controller/base/_pagination.html.haml +1 -0
- data/app/views/administrador/resources_controller/base/_query_form.html.haml +0 -0
- data/app/views/administrador/resources_controller/base/_query_form_buttons.html.haml +2 -0
- data/app/views/administrador/resources_controller/base/_show_actions.html.haml +10 -0
- data/app/views/administrador/resources_controller/base/_show_table.html.haml +5 -0
- data/app/views/administrador/resources_controller/base/edit.html.haml +14 -0
- data/app/views/administrador/resources_controller/base/index.html.haml +33 -0
- data/app/views/administrador/resources_controller/base/new.html.haml +14 -0
- data/app/views/administrador/resources_controller/base/show.html.haml +19 -0
- data/app/views/administrador/service_controller/base/_create_actions.html.haml +3 -0
- data/app/views/administrador/service_controller/base/_create_after_service_output.html.haml +0 -0
- data/app/views/administrador/service_controller/base/_create_before_service_output.html.haml +0 -0
- data/app/views/administrador/service_controller/base/_form_buttons.haml +1 -0
- data/app/views/administrador/service_controller/base/_form_errors.html.haml +6 -0
- data/app/views/administrador/service_controller/base/_html_head_extras.html.haml +0 -0
- data/app/views/administrador/service_controller/base/_new_actions.html.haml +3 -0
- data/app/views/administrador/service_controller/base/create.html.haml +24 -0
- data/app/views/administrador/service_controller/base/new.html.haml +14 -0
- data/app/views/administrador/sidebar_controller/base/show.html.haml +1 -0
- data/app/views/breadcrumbs/_render.html.haml +7 -0
- data/app/views/layouts/administrador/application.html.haml +64 -0
- data/app/views/offcanvas_view_helper/_offcanvas.html.erb +11 -0
- data/config/initializers/localized_engines_fix.rb +3 -0
- data/config/locales/de.yml +76 -0
- data/config/locales/en.yml +46 -0
- data/config/routes.rb +8 -0
- data/lib/administrador/configuration.rb +24 -0
- data/lib/administrador/engine.rb +5 -0
- data/lib/administrador/feature.rb +7 -0
- data/lib/administrador/registered_engine.rb +73 -0
- data/lib/administrador/version.rb +3 -0
- data/lib/administrador.rb +19 -0
- data/lib/generators/administrador/install/install_generator.rb +19 -0
- data/lib/generators/administrador/install/templates/initializer.rb +11 -0
- data/lib/generators/administrador/install/templates/routes.source +4 -0
- data/lib/tasks/administrador_tasks.rake +4 -0
- metadata +493 -0
metadata
ADDED
@@ -0,0 +1,493 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: administrador
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.pre
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Roberto Vasquez Angel
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-03-19 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: 5.2.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 5.2.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: coffee-rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: haml-rails
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rao-query
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.0.12.pre
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.0.12.pre
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rao-component
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.0.12.pre
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.0.12.pre
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rao-resource_controller
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.0.12.pre
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.0.12.pre
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rao-resources_controller
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.0.12.pre
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.0.12.pre
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rao-service_controller
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.0.12.pre
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.0.12.pre
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rao-view_helper
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 0.0.12.pre
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 0.0.12.pre
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: route_translator
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: simple_form
|
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: bootstrap4-kaminari-views
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rails-i18n
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: sqlite3
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: rspec-rails
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: simplecov
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - ">="
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '0'
|
230
|
+
type: :development
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '0'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: guard
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - ">="
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '0'
|
244
|
+
type: :development
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - ">="
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: '0'
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: guard-bundler
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - ">="
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '0'
|
258
|
+
type: :development
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - ">="
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '0'
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: guard-rspec
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - ">="
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: '0'
|
272
|
+
type: :development
|
273
|
+
prerelease: false
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - ">="
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: '0'
|
279
|
+
- !ruby/object:Gem::Dependency
|
280
|
+
name: capybara
|
281
|
+
requirement: !ruby/object:Gem::Requirement
|
282
|
+
requirements:
|
283
|
+
- - ">="
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: '0'
|
286
|
+
type: :development
|
287
|
+
prerelease: false
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
289
|
+
requirements:
|
290
|
+
- - ">="
|
291
|
+
- !ruby/object:Gem::Version
|
292
|
+
version: '0'
|
293
|
+
- !ruby/object:Gem::Dependency
|
294
|
+
name: pry-rails
|
295
|
+
requirement: !ruby/object:Gem::Requirement
|
296
|
+
requirements:
|
297
|
+
- - ">="
|
298
|
+
- !ruby/object:Gem::Version
|
299
|
+
version: '0'
|
300
|
+
type: :development
|
301
|
+
prerelease: false
|
302
|
+
version_requirements: !ruby/object:Gem::Requirement
|
303
|
+
requirements:
|
304
|
+
- - ">="
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
version: '0'
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: responders
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - ">="
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: '0'
|
314
|
+
type: :development
|
315
|
+
prerelease: false
|
316
|
+
version_requirements: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - ">="
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: '0'
|
321
|
+
- !ruby/object:Gem::Dependency
|
322
|
+
name: factory_bot_rails
|
323
|
+
requirement: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - ">="
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '0'
|
328
|
+
type: :development
|
329
|
+
prerelease: false
|
330
|
+
version_requirements: !ruby/object:Gem::Requirement
|
331
|
+
requirements:
|
332
|
+
- - ">="
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
version: '0'
|
335
|
+
- !ruby/object:Gem::Dependency
|
336
|
+
name: launchy
|
337
|
+
requirement: !ruby/object:Gem::Requirement
|
338
|
+
requirements:
|
339
|
+
- - ">="
|
340
|
+
- !ruby/object:Gem::Version
|
341
|
+
version: '0'
|
342
|
+
type: :development
|
343
|
+
prerelease: false
|
344
|
+
version_requirements: !ruby/object:Gem::Requirement
|
345
|
+
requirements:
|
346
|
+
- - ">="
|
347
|
+
- !ruby/object:Gem::Version
|
348
|
+
version: '0'
|
349
|
+
description:
|
350
|
+
email:
|
351
|
+
- roberto@vasquez-angel.de
|
352
|
+
executables: []
|
353
|
+
extensions: []
|
354
|
+
extra_rdoc_files: []
|
355
|
+
files:
|
356
|
+
- MIT-LICENSE
|
357
|
+
- README.md
|
358
|
+
- Rakefile
|
359
|
+
- app/assets/config/administrador_manifest.js
|
360
|
+
- app/assets/javascripts/administrador/application.js
|
361
|
+
- app/assets/stylesheets/administrador/application.css
|
362
|
+
- app/assets/stylesheets/administrador/application/bootstrap-btn-responsive.css
|
363
|
+
- app/assets/stylesheets/administrador/application/bootstrap-btn-xs.css
|
364
|
+
- app/assets/stylesheets/administrador/application/bootstrap-circular-buttons.css
|
365
|
+
- app/assets/stylesheets/administrador/application/bootstrap-table-xs.css
|
366
|
+
- app/assets/stylesheets/administrador/application/colors.css
|
367
|
+
- app/assets/stylesheets/administrador/application/engine-sidebar.css
|
368
|
+
- app/assets/stylesheets/administrador/application/layout.css
|
369
|
+
- app/assets/stylesheets/administrador/application/page-actions.css
|
370
|
+
- app/assets/stylesheets/administrador/application/query_form.css
|
371
|
+
- app/concerns/administrador/controller/application_concern.rb
|
372
|
+
- app/concerns/administrador/controller/engine_concern.rb
|
373
|
+
- app/concerns/administrador/controller/resource_concern.rb
|
374
|
+
- app/concerns/administrador/controller/resources_concern.rb
|
375
|
+
- app/concerns/administrador/controller/service_concern.rb
|
376
|
+
- app/concerns/administrador/engine_routable/localized_concern.rb
|
377
|
+
- app/controllers/administrador/application_controller.rb
|
378
|
+
- app/controllers/administrador/home_controller.rb
|
379
|
+
- app/controllers/administrador/home_controller/base.rb
|
380
|
+
- app/controllers/administrador/resource_controller/base.rb
|
381
|
+
- app/controllers/administrador/resources_controller/base.rb
|
382
|
+
- app/controllers/administrador/service_controller/base.rb
|
383
|
+
- app/controllers/administrador/sidebar_controller/base.rb
|
384
|
+
- app/jobs/administrador/application_job.rb
|
385
|
+
- app/mailers/administrador/application_mailer.rb
|
386
|
+
- app/models/administrador/application_record.rb
|
387
|
+
- app/view_helpers/administrador/application_view_helper.rb
|
388
|
+
- app/view_helpers/administrador/breadcrumbs_view_helper.rb
|
389
|
+
- app/view_helpers/administrador/offcanvas_view_helper.rb
|
390
|
+
- app/views/administrador/application/_main_sidebar_right.html.haml
|
391
|
+
- app/views/administrador/application/_navbar.html.haml
|
392
|
+
- app/views/administrador/application/sidebars/_engine.html.haml
|
393
|
+
- app/views/administrador/application/sidebars/_i18n.html.haml
|
394
|
+
- app/views/administrador/application/sidebars/_messages.html.haml
|
395
|
+
- app/views/administrador/application/sidebars/_notifications.html.haml
|
396
|
+
- app/views/administrador/application/sidebars/_search.html.haml
|
397
|
+
- app/views/administrador/application/sidebars/_settings.html.haml
|
398
|
+
- app/views/administrador/application/sidebars/_user.html.haml
|
399
|
+
- app/views/administrador/application_view_helper/_flash_messages.html.haml
|
400
|
+
- app/views/administrador/application_view_helper/_render_engine_sidebars.html.haml
|
401
|
+
- app/views/administrador/home/_html_head_extras.html.haml
|
402
|
+
- app/views/administrador/home/index.de.html.haml
|
403
|
+
- app/views/administrador/home/index.en.html.haml
|
404
|
+
- app/views/administrador/home_controller/base/_html_head_extras.html.haml
|
405
|
+
- app/views/administrador/home_controller/base/index.html.haml
|
406
|
+
- app/views/administrador/resource_controller/base/_after_show_table.html.haml
|
407
|
+
- app/views/administrador/resource_controller/base/_before_show_table.html.haml
|
408
|
+
- app/views/administrador/resource_controller/base/_edit_actions.html.haml
|
409
|
+
- app/views/administrador/resource_controller/base/_form.html.haml
|
410
|
+
- app/views/administrador/resource_controller/base/_form_buttons.html.haml
|
411
|
+
- app/views/administrador/resource_controller/base/_form_errors.html.haml
|
412
|
+
- app/views/administrador/resource_controller/base/_html_head_extras.html.haml
|
413
|
+
- app/views/administrador/resource_controller/base/_new_actions.html.haml
|
414
|
+
- app/views/administrador/resource_controller/base/_show_actions.html.haml
|
415
|
+
- app/views/administrador/resource_controller/base/_show_table.html.haml
|
416
|
+
- app/views/administrador/resource_controller/base/edit.html.haml
|
417
|
+
- app/views/administrador/resource_controller/base/new.html.haml
|
418
|
+
- app/views/administrador/resource_controller/base/show.html.haml
|
419
|
+
- app/views/administrador/resources_controller/base/_after_index_table.html.haml
|
420
|
+
- app/views/administrador/resources_controller/base/_after_show_table.html.haml
|
421
|
+
- app/views/administrador/resources_controller/base/_before_index_table.html.haml
|
422
|
+
- app/views/administrador/resources_controller/base/_before_show_table.html.haml
|
423
|
+
- app/views/administrador/resources_controller/base/_edit_actions.html.haml
|
424
|
+
- app/views/administrador/resources_controller/base/_form.html.haml
|
425
|
+
- app/views/administrador/resources_controller/base/_form_buttons.html.haml
|
426
|
+
- app/views/administrador/resources_controller/base/_form_errors.html.haml
|
427
|
+
- app/views/administrador/resources_controller/base/_html_head_extras.html.haml
|
428
|
+
- app/views/administrador/resources_controller/base/_index_actions.html.haml
|
429
|
+
- app/views/administrador/resources_controller/base/_index_table.html.haml
|
430
|
+
- app/views/administrador/resources_controller/base/_index_table_actions.html.haml
|
431
|
+
- app/views/administrador/resources_controller/base/_index_table_actions.html.haml~
|
432
|
+
- app/views/administrador/resources_controller/base/_new_actions.html.haml
|
433
|
+
- app/views/administrador/resources_controller/base/_pagination.html.haml
|
434
|
+
- app/views/administrador/resources_controller/base/_query_form.html.haml
|
435
|
+
- app/views/administrador/resources_controller/base/_query_form_buttons.html.haml
|
436
|
+
- app/views/administrador/resources_controller/base/_show_actions.html.haml
|
437
|
+
- app/views/administrador/resources_controller/base/_show_table.html.haml
|
438
|
+
- app/views/administrador/resources_controller/base/edit.html.haml
|
439
|
+
- app/views/administrador/resources_controller/base/index.html.haml
|
440
|
+
- app/views/administrador/resources_controller/base/new.html.haml
|
441
|
+
- app/views/administrador/resources_controller/base/show.html.haml
|
442
|
+
- app/views/administrador/service_controller/base/_create_actions.html.haml
|
443
|
+
- app/views/administrador/service_controller/base/_create_after_service_output.html.haml
|
444
|
+
- app/views/administrador/service_controller/base/_create_before_service_output.html.haml
|
445
|
+
- app/views/administrador/service_controller/base/_form_buttons.haml
|
446
|
+
- app/views/administrador/service_controller/base/_form_errors.html.haml
|
447
|
+
- app/views/administrador/service_controller/base/_html_head_extras.html.haml
|
448
|
+
- app/views/administrador/service_controller/base/_new_actions.html.haml
|
449
|
+
- app/views/administrador/service_controller/base/create.html.haml
|
450
|
+
- app/views/administrador/service_controller/base/new.html.haml
|
451
|
+
- app/views/administrador/sidebar_controller/base/show.html.haml
|
452
|
+
- app/views/breadcrumbs/_render.html.haml
|
453
|
+
- app/views/layouts/administrador/application.html.haml
|
454
|
+
- app/views/offcanvas_view_helper/_offcanvas.html.erb
|
455
|
+
- config/initializers/localized_engines_fix.rb
|
456
|
+
- config/locales/de.yml
|
457
|
+
- config/locales/en.yml
|
458
|
+
- config/routes.rb
|
459
|
+
- lib/administrador.rb
|
460
|
+
- lib/administrador/configuration.rb
|
461
|
+
- lib/administrador/engine.rb
|
462
|
+
- lib/administrador/feature.rb
|
463
|
+
- lib/administrador/registered_engine.rb
|
464
|
+
- lib/administrador/version.rb
|
465
|
+
- lib/generators/administrador/install/install_generator.rb
|
466
|
+
- lib/generators/administrador/install/templates/initializer.rb
|
467
|
+
- lib/generators/administrador/install/templates/routes.source
|
468
|
+
- lib/tasks/administrador_tasks.rake
|
469
|
+
homepage: https://github.com/robotex82/administrador
|
470
|
+
licenses:
|
471
|
+
- MIT
|
472
|
+
metadata: {}
|
473
|
+
post_install_message:
|
474
|
+
rdoc_options: []
|
475
|
+
require_paths:
|
476
|
+
- lib
|
477
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
478
|
+
requirements:
|
479
|
+
- - ">="
|
480
|
+
- !ruby/object:Gem::Version
|
481
|
+
version: '0'
|
482
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
483
|
+
requirements:
|
484
|
+
- - ">"
|
485
|
+
- !ruby/object:Gem::Version
|
486
|
+
version: 1.3.1
|
487
|
+
requirements: []
|
488
|
+
rubyforge_project:
|
489
|
+
rubygems_version: 2.7.7
|
490
|
+
signing_key:
|
491
|
+
specification_version: 4
|
492
|
+
summary: Administrador - The rails administration interface.
|
493
|
+
test_files: []
|