sunrise-cms 0.4.1 → 0.4.2
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.
- data/README.rdoc +50 -2
- data/app/assets/javascripts/sunrise/manage.js.coffee +18 -0
- data/app/assets/stylesheets/sunrise/customize.css +43 -0
- data/app/controllers/sunrise/dashboard_controller.rb +2 -1
- data/app/helpers/sunrise/manager_helper.rb +30 -0
- data/app/views/sunrise/manager/_field.html.erb +15 -1
- data/app/views/sunrise/manager/_nested_field.html.erb +4 -0
- data/config/locales/sunrise/en.yml +1 -0
- data/config/locales/sunrise/ru.yml +1 -0
- data/config/locales/sunrise/uk.yml +1 -0
- data/lib/sunrise/abstract_model.rb +3 -6
- data/lib/sunrise/config/field.rb +5 -1
- data/lib/sunrise/config/has_fields.rb +9 -0
- data/lib/sunrise/config/nested_field.rb +27 -0
- data/lib/sunrise/config.rb +1 -1
- data/lib/sunrise/models/settings.rb +4 -0
- data/lib/sunrise/version.rb +1 -1
- data/spec/dummy/log/test.log +2704 -0
- metadata +6 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sunrise-cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-11-05 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
requirements:
|
68
68
|
- - ~>
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.
|
70
|
+
version: 0.5.0
|
71
71
|
type: :runtime
|
72
72
|
prerelease: false
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -75,7 +75,7 @@ dependencies:
|
|
75
75
|
requirements:
|
76
76
|
- - ~>
|
77
77
|
- !ruby/object:Gem::Version
|
78
|
-
version: 0.
|
78
|
+
version: 0.5.0
|
79
79
|
- !ruby/object:Gem::Dependency
|
80
80
|
name: awesome_nested_set
|
81
81
|
requirement: !ruby/object:Gem::Requirement
|
@@ -395,6 +395,7 @@ files:
|
|
395
395
|
- app/views/sunrise/manager/table/_model_filter.html.erb
|
396
396
|
- app/views/sunrise/manager/_header_edit.html.erb
|
397
397
|
- app/views/sunrise/manager/_form.html.erb
|
398
|
+
- app/views/sunrise/manager/_nested_field.html.erb
|
398
399
|
- app/views/sunrise/manager/structures/tree/_record.html.erb
|
399
400
|
- app/views/sunrise/manager/structures/thumbs/_record.html.erb
|
400
401
|
- app/views/sunrise/manager/tree/_record.html.erb
|
@@ -464,6 +465,7 @@ files:
|
|
464
465
|
- lib/sunrise/config/association.rb
|
465
466
|
- lib/sunrise/config/group.rb
|
466
467
|
- lib/sunrise/config/navigation_item.rb
|
468
|
+
- lib/sunrise/config/nested_field.rb
|
467
469
|
- lib/sunrise/config/list.rb
|
468
470
|
- lib/sunrise/config/edit.rb
|
469
471
|
- lib/sunrise/version.rb
|