optimacms 0.1.34 → 0.1.36
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 +4 -4
- data/app/controllers/optimacms/admin/admin_base_controller.rb +9 -3
- data/app/controllers/optimacms/admin/app_sys_controller.rb +19 -0
- data/app/controllers/optimacms/admin/common_controller.rb +14 -0
- data/app/controllers/optimacms/admin/pages_controller.rb +1 -1
- data/app/views/optimacms/admin/app_sys/index.html.haml +2 -0
- data/app/views/optimacms/admin/common/res.html.haml +9 -0
- data/app/views/optimacms/admin/pages/index.html.haml +10 -0
- data/app/views/optimacms/admin/shared/_leftmenu.html.haml +14 -1
- data/config/routes.rb +9 -0
- data/lib/optimacms/sys/app_functions.rb +12 -0
- data/lib/optimacms/version.rb +1 -1
- data/test/dummy/log/development.log +3177 -0
- data/test/dummy/tmp/pids/server.pid +1 -1
- metadata +7 -2
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
13924
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: optimacms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Max Ivak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -258,6 +258,8 @@ files:
|
|
258
258
|
- app/assets/stylesheets/optimacms/tinymce.css.scss
|
259
259
|
- app/assets/stylesheets/optimacms/tpl.css.scss
|
260
260
|
- app/controllers/optimacms/admin/admin_base_controller.rb
|
261
|
+
- app/controllers/optimacms/admin/app_sys_controller.rb
|
262
|
+
- app/controllers/optimacms/admin/common_controller.rb
|
261
263
|
- app/controllers/optimacms/admin/dashboard_controller.rb
|
262
264
|
- app/controllers/optimacms/admin/layouts_controller.rb
|
263
265
|
- app/controllers/optimacms/admin/mediafiles_controller.rb
|
@@ -294,10 +296,12 @@ files:
|
|
294
296
|
- app/views/cms_admin_users/unlocks/new.html.erb
|
295
297
|
- app/views/layouts/optimacms/application.html.erb
|
296
298
|
- app/views/layouts/optimacms/application_logged_out.html.erb
|
299
|
+
- app/views/optimacms/admin/app_sys/index.html.haml
|
297
300
|
- app/views/optimacms/admin/common/_js_ace.html.haml
|
298
301
|
- app/views/optimacms/admin/common/_js_tinymce.html.haml
|
299
302
|
- app/views/optimacms/admin/common/_list.html.haml
|
300
303
|
- app/views/optimacms/admin/common/_modal_div.html.haml
|
304
|
+
- app/views/optimacms/admin/common/res.html.haml
|
301
305
|
- app/views/optimacms/admin/dashboard/index.html.haml
|
302
306
|
- app/views/optimacms/admin/layouts/_form.html.haml
|
303
307
|
- app/views/optimacms/admin/layouts/application.html.haml
|
@@ -365,6 +369,7 @@ files:
|
|
365
369
|
- lib/optimacms/page_services/page_process_service.rb
|
366
370
|
- lib/optimacms/page_services/page_route_service.rb
|
367
371
|
- lib/optimacms/simple_form_extensions/button_components.rb
|
372
|
+
- lib/optimacms/sys/app_functions.rb
|
368
373
|
- lib/optimacms/version.rb
|
369
374
|
- lib/tasks/optimacms_tasks.rake
|
370
375
|
- test/controllers/optimacms/articles_controller_test.rb
|