easy_admin_ui 0.4.0 → 0.5.0
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 +4 -15
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/{assets/icons → app/assets/images/easy_admin_ui}/classify.png +0 -0
- data/{assets/icons → app/assets/images/easy_admin_ui}/connect.png +0 -0
- data/{assets/icons → app/assets/images/easy_admin_ui}/delete.png +0 -0
- data/{assets/icons → app/assets/images/easy_admin_ui}/disconnect.png +0 -0
- data/{assets/icons → app/assets/images/easy_admin_ui}/pencil.png +0 -0
- data/{assets/icons → app/assets/images/easy_admin_ui}/show.png +0 -0
- data/app/assets/stylesheets/easy_admin_ui/easy_admin_ui.sass +47 -0
- data/app/views/easy_admin_ui/destroy.js.erb +1 -0
- data/{templates → app/views}/easy_admin_ui/edit.html.erb +0 -0
- data/{templates → app/views}/easy_admin_ui/index.html.erb +0 -0
- data/{templates → app/views}/easy_admin_ui/new.html.erb +0 -0
- data/{templates → app/views}/easy_admin_ui/show.html.erb +0 -0
- data/easy_admin_ui.gemspec +80 -21
- data/lib/easy_admin_ui/core_ext.rb +1 -3
- data/lib/easy_admin_ui/rails/engine.rb +10 -0
- data/lib/easy_admin_ui/tasks.rb +0 -10
- data/lib/easy_admin_ui/view_helpers.rb +3 -3
- data/lib/easy_admin_ui.rb +1 -9
- data/vendor/plugins/make_resourceful/.gitignore +1 -0
- data/vendor/plugins/make_resourceful/DEFAULTS +148 -0
- data/vendor/plugins/make_resourceful/LICENSE +7 -0
- data/vendor/plugins/make_resourceful/README.rdoc +239 -0
- data/vendor/plugins/make_resourceful/Rakefile +31 -0
- data/vendor/plugins/make_resourceful/VERSION +1 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/resourceful_scaffold_generator.rb +87 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/controller.rb +5 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/fixtures.yml +10 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/functional_test.rb +50 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/helper.rb +2 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/migration.rb +13 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/model.rb +2 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/unit_test.rb +7 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view__form.haml +5 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_edit.haml +11 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_index.haml +5 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_new.haml +9 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_partial.haml +12 -0
- data/vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_show.haml +14 -0
- data/vendor/plugins/make_resourceful/init.rb +3 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/base.rb +63 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/builder.rb +385 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/default/accessors.rb +402 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/default/actions.rb +101 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/default/callbacks.rb +51 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/default/responses.rb +118 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/default/urls.rb +137 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/maker.rb +84 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/response.rb +33 -0
- data/vendor/plugins/make_resourceful/lib/resourceful/serialize.rb +185 -0
- data/vendor/plugins/make_resourceful/spec/accessors_spec.rb +474 -0
- data/vendor/plugins/make_resourceful/spec/actions_spec.rb +310 -0
- data/vendor/plugins/make_resourceful/spec/base_spec.rb +12 -0
- data/vendor/plugins/make_resourceful/spec/builder_spec.rb +332 -0
- data/vendor/plugins/make_resourceful/spec/callbacks_spec.rb +71 -0
- data/vendor/plugins/make_resourceful/spec/integration_spec.rb +394 -0
- data/vendor/plugins/make_resourceful/spec/maker_spec.rb +91 -0
- data/vendor/plugins/make_resourceful/spec/response_spec.rb +37 -0
- data/vendor/plugins/make_resourceful/spec/responses_spec.rb +314 -0
- data/vendor/plugins/make_resourceful/spec/rspec-rails/LICENSE +37 -0
- data/vendor/plugins/make_resourceful/spec/rspec-rails/redirect_to.rb +113 -0
- data/vendor/plugins/make_resourceful/spec/rspec-rails/render_template.rb +90 -0
- data/vendor/plugins/make_resourceful/spec/serialize_spec.rb +133 -0
- data/vendor/plugins/make_resourceful/spec/spec_helper.rb +319 -0
- data/vendor/plugins/make_resourceful/spec/urls_spec.rb +282 -0
- data/vendor/plugins/make_resourceful/spec/views/things/create.rjs +1 -0
- data/vendor/plugins/make_resourceful/spec/views/things/destroy.rjs +1 -0
- data/vendor/plugins/make_resourceful/spec/views/things/edit.html.erb +4 -0
- data/vendor/plugins/make_resourceful/spec/views/things/edit.rjs +1 -0
- data/vendor/plugins/make_resourceful/spec/views/things/index.html.erb +4 -0
- data/vendor/plugins/make_resourceful/spec/views/things/index.rjs +1 -0
- data/vendor/plugins/make_resourceful/spec/views/things/new.html.erb +4 -0
- data/vendor/plugins/make_resourceful/spec/views/things/new.rjs +1 -0
- data/vendor/plugins/make_resourceful/spec/views/things/show.html.erb +4 -0
- data/vendor/plugins/make_resourceful/spec/views/things/show.rjs +1 -0
- data/vendor/plugins/make_resourceful/spec/views/things/update.rjs +1 -0
- metadata +75 -16
- data/assets/css/easy_admin_ui.css +0 -69
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_admin_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 5
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.5.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Martin Moen Wulffeld
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-09-09 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: kaminari
|
@@ -61,23 +61,82 @@ files:
|
|
61
61
|
- README
|
62
62
|
- Rakefile
|
63
63
|
- VERSION
|
64
|
-
- assets/
|
65
|
-
- assets/
|
66
|
-
- assets/
|
67
|
-
- assets/
|
68
|
-
- assets/
|
69
|
-
- assets/
|
70
|
-
- assets/
|
64
|
+
- app/assets/images/easy_admin_ui/classify.png
|
65
|
+
- app/assets/images/easy_admin_ui/connect.png
|
66
|
+
- app/assets/images/easy_admin_ui/delete.png
|
67
|
+
- app/assets/images/easy_admin_ui/disconnect.png
|
68
|
+
- app/assets/images/easy_admin_ui/pencil.png
|
69
|
+
- app/assets/images/easy_admin_ui/show.png
|
70
|
+
- app/assets/stylesheets/easy_admin_ui/easy_admin_ui.sass
|
71
|
+
- app/views/easy_admin_ui/destroy.js.erb
|
72
|
+
- app/views/easy_admin_ui/edit.html.erb
|
73
|
+
- app/views/easy_admin_ui/index.html.erb
|
74
|
+
- app/views/easy_admin_ui/new.html.erb
|
75
|
+
- app/views/easy_admin_ui/show.html.erb
|
71
76
|
- easy_admin_ui.gemspec
|
72
77
|
- lib/easy_admin_ui.rb
|
73
78
|
- lib/easy_admin_ui/core_ext.rb
|
79
|
+
- lib/easy_admin_ui/rails/engine.rb
|
74
80
|
- lib/easy_admin_ui/tasks.rb
|
75
81
|
- lib/easy_admin_ui/view_helpers.rb
|
76
82
|
- tasks/easy_admin_ui.rake
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
80
|
-
-
|
83
|
+
- vendor/plugins/make_resourceful/.gitignore
|
84
|
+
- vendor/plugins/make_resourceful/DEFAULTS
|
85
|
+
- vendor/plugins/make_resourceful/LICENSE
|
86
|
+
- vendor/plugins/make_resourceful/README.rdoc
|
87
|
+
- vendor/plugins/make_resourceful/Rakefile
|
88
|
+
- vendor/plugins/make_resourceful/VERSION
|
89
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/resourceful_scaffold_generator.rb
|
90
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/controller.rb
|
91
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/fixtures.yml
|
92
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/functional_test.rb
|
93
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/helper.rb
|
94
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/migration.rb
|
95
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/model.rb
|
96
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/unit_test.rb
|
97
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view__form.haml
|
98
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_edit.haml
|
99
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_index.haml
|
100
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_new.haml
|
101
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_partial.haml
|
102
|
+
- vendor/plugins/make_resourceful/generators/resourceful_scaffold/templates/view_show.haml
|
103
|
+
- vendor/plugins/make_resourceful/init.rb
|
104
|
+
- vendor/plugins/make_resourceful/lib/resourceful/base.rb
|
105
|
+
- vendor/plugins/make_resourceful/lib/resourceful/builder.rb
|
106
|
+
- vendor/plugins/make_resourceful/lib/resourceful/default/accessors.rb
|
107
|
+
- vendor/plugins/make_resourceful/lib/resourceful/default/actions.rb
|
108
|
+
- vendor/plugins/make_resourceful/lib/resourceful/default/callbacks.rb
|
109
|
+
- vendor/plugins/make_resourceful/lib/resourceful/default/responses.rb
|
110
|
+
- vendor/plugins/make_resourceful/lib/resourceful/default/urls.rb
|
111
|
+
- vendor/plugins/make_resourceful/lib/resourceful/maker.rb
|
112
|
+
- vendor/plugins/make_resourceful/lib/resourceful/response.rb
|
113
|
+
- vendor/plugins/make_resourceful/lib/resourceful/serialize.rb
|
114
|
+
- vendor/plugins/make_resourceful/spec/accessors_spec.rb
|
115
|
+
- vendor/plugins/make_resourceful/spec/actions_spec.rb
|
116
|
+
- vendor/plugins/make_resourceful/spec/base_spec.rb
|
117
|
+
- vendor/plugins/make_resourceful/spec/builder_spec.rb
|
118
|
+
- vendor/plugins/make_resourceful/spec/callbacks_spec.rb
|
119
|
+
- vendor/plugins/make_resourceful/spec/integration_spec.rb
|
120
|
+
- vendor/plugins/make_resourceful/spec/maker_spec.rb
|
121
|
+
- vendor/plugins/make_resourceful/spec/response_spec.rb
|
122
|
+
- vendor/plugins/make_resourceful/spec/responses_spec.rb
|
123
|
+
- vendor/plugins/make_resourceful/spec/rspec-rails/LICENSE
|
124
|
+
- vendor/plugins/make_resourceful/spec/rspec-rails/redirect_to.rb
|
125
|
+
- vendor/plugins/make_resourceful/spec/rspec-rails/render_template.rb
|
126
|
+
- vendor/plugins/make_resourceful/spec/serialize_spec.rb
|
127
|
+
- vendor/plugins/make_resourceful/spec/spec_helper.rb
|
128
|
+
- vendor/plugins/make_resourceful/spec/urls_spec.rb
|
129
|
+
- vendor/plugins/make_resourceful/spec/views/things/create.rjs
|
130
|
+
- vendor/plugins/make_resourceful/spec/views/things/destroy.rjs
|
131
|
+
- vendor/plugins/make_resourceful/spec/views/things/edit.html.erb
|
132
|
+
- vendor/plugins/make_resourceful/spec/views/things/edit.rjs
|
133
|
+
- vendor/plugins/make_resourceful/spec/views/things/index.html.erb
|
134
|
+
- vendor/plugins/make_resourceful/spec/views/things/index.rjs
|
135
|
+
- vendor/plugins/make_resourceful/spec/views/things/new.html.erb
|
136
|
+
- vendor/plugins/make_resourceful/spec/views/things/new.rjs
|
137
|
+
- vendor/plugins/make_resourceful/spec/views/things/show.html.erb
|
138
|
+
- vendor/plugins/make_resourceful/spec/views/things/show.rjs
|
139
|
+
- vendor/plugins/make_resourceful/spec/views/things/update.rjs
|
81
140
|
homepage: http://github.com/wulffeld/easy_admin_ui
|
82
141
|
licenses: []
|
83
142
|
|
@@ -107,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
166
|
requirements: []
|
108
167
|
|
109
168
|
rubyforge_project:
|
110
|
-
rubygems_version: 1.8.
|
169
|
+
rubygems_version: 1.8.10
|
111
170
|
signing_key:
|
112
171
|
specification_version: 3
|
113
172
|
summary: Easy Admin UI.
|
@@ -1,69 +0,0 @@
|
|
1
|
-
/* Copy this to your main CSS if you like. */
|
2
|
-
|
3
|
-
/** easy start **/
|
4
|
-
table.easy {
|
5
|
-
border-collapse: normal;
|
6
|
-
margin-top: 4px;
|
7
|
-
}
|
8
|
-
|
9
|
-
table.easy th,
|
10
|
-
table.easy td {
|
11
|
-
font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
|
12
|
-
font-size: 12px;
|
13
|
-
line-height: 14px;
|
14
|
-
}
|
15
|
-
|
16
|
-
table.easy td p {
|
17
|
-
margin: 0 0 10px 0;
|
18
|
-
}
|
19
|
-
|
20
|
-
table.easy th.wrap,
|
21
|
-
table.easy td.wrap {
|
22
|
-
white-space: normal;
|
23
|
-
}
|
24
|
-
|
25
|
-
/* Header cells. */
|
26
|
-
table.easy thead th {
|
27
|
-
background-color: #E6E6E6;
|
28
|
-
color: inherit;
|
29
|
-
border: 1px solid #FFF;
|
30
|
-
padding: 3px;
|
31
|
-
}
|
32
|
-
|
33
|
-
table.easy thead td.textright {
|
34
|
-
text-align: right;
|
35
|
-
}
|
36
|
-
|
37
|
-
/* Body cells. */
|
38
|
-
table.easy tbody td.blank {
|
39
|
-
background-color: inherit;
|
40
|
-
color: inherit;
|
41
|
-
border: none;
|
42
|
-
}
|
43
|
-
|
44
|
-
table.easy tbody td {
|
45
|
-
background-color: #FFF;
|
46
|
-
color: #333;
|
47
|
-
width: auto;
|
48
|
-
border-top: 1px dotted #DDD;
|
49
|
-
padding: 4px 3px;
|
50
|
-
}
|
51
|
-
|
52
|
-
table.easy tbody td.act {
|
53
|
-
margin: 0;
|
54
|
-
padding-top: 2px;
|
55
|
-
padding-bottom: 0;
|
56
|
-
min-width: 150px;
|
57
|
-
}
|
58
|
-
|
59
|
-
table.easy th.date,
|
60
|
-
table.easy td.date {
|
61
|
-
width: 80px;
|
62
|
-
}
|
63
|
-
|
64
|
-
table.easy th.datetime,
|
65
|
-
table.easy td.datetime {
|
66
|
-
width: 110px;
|
67
|
-
}
|
68
|
-
|
69
|
-
/** easy end **/
|