lolita 3.1.16 → 3.1.17
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/Gemfile +2 -1
- data/History.rdoc +10 -0
- data/VERSION +1 -1
- data/app/views/components/lolita/configuration/field/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/_label.html.erb +1 -1
- data/app/views/components/lolita/configuration/field/array/habtm/_display.html.haml +1 -1
- data/app/views/components/lolita/configuration/field/array/select/_display.html.erb +1 -1
- data/app/views/components/lolita/configuration/list/_paginator.html.erb +1 -1
- data/app/views/components/lolita/configuration/nested_form/_display.html.erb +3 -3
- data/app/views/components/lolita/configuration/nested_form/_fields.html.erb +1 -1
- data/app/views/components/lolita/configuration/tab/_display.html.erb +4 -13
- data/app/views/components/lolita/configuration/tab/_error_msg.html.erb +14 -0
- data/app/views/components/lolita/configuration/tab/_form.html.erb +1 -1
- data/app/views/components/lolita/shared/_header.html.erb +1 -1
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -0
- data/app/views/kaminari/lolita/_gap.html.erb +8 -0
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -0
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -0
- data/app/views/kaminari/lolita/_page.html.erb +12 -0
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -0
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -0
- data/app/views/layouts/lolita/application.html.erb +5 -3
- data/config/locales/en.yml +2 -0
- data/config/locales/lv.yml +10 -1
- data/lib/lolita/configuration/field/array.rb +10 -0
- data/lib/lolita/configuration/helper.rb +1 -1
- data/lib/lolita/configuration/nested_form.rb +33 -0
- data/lib/lolita/rails.rb +5 -1
- data/lib/lolita/system_configuration/application.rb +21 -0
- data/lib/lolita/system_configuration/base.rb +161 -0
- data/lib/lolita.rb +6 -2
- data/lolita.gemspec +15 -3
- data/public/javascripts/lolita/tab.js +9 -14
- data/public/stylesheets/lolita/style.css +114 -19
- data/spec/lolita_spec.rb +1 -1
- metadata +52 -32
- data/lib/lolita/base_configuration.rb +0 -166
data/lolita.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{lolita}
|
8
|
-
s.version = "3.1.
|
8
|
+
s.version = "3.1.17"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = [%q{ITHouse (Latvia) and Arturs Meisters}]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-09-01}
|
13
13
|
s.description = %q{Great Rails CMS, that turns your business logic into good-looking, fully functional workspace. }
|
14
14
|
s.email = %q{support@ithouse.lv}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -73,6 +73,7 @@ Gem::Specification.new do |s|
|
|
73
73
|
"app/views/components/lolita/configuration/nested_form/_display.html.erb",
|
74
74
|
"app/views/components/lolita/configuration/nested_form/_fields.html.erb",
|
75
75
|
"app/views/components/lolita/configuration/tab/_display.html.erb",
|
76
|
+
"app/views/components/lolita/configuration/tab/_error_msg.html.erb",
|
76
77
|
"app/views/components/lolita/configuration/tab/_fields.html.erb",
|
77
78
|
"app/views/components/lolita/configuration/tab/_form.html.erb",
|
78
79
|
"app/views/components/lolita/configuration/tab/content/_display.html.erb",
|
@@ -83,6 +84,13 @@ Gem::Specification.new do |s|
|
|
83
84
|
"app/views/components/lolita/shared/_flash.html.erb",
|
84
85
|
"app/views/components/lolita/shared/_header.html.erb",
|
85
86
|
"app/views/components/lolita/shared/_right_sidebar.html.erb",
|
87
|
+
"app/views/kaminari/lolita/_first_page.html.erb",
|
88
|
+
"app/views/kaminari/lolita/_gap.html.erb",
|
89
|
+
"app/views/kaminari/lolita/_last_page.html.erb",
|
90
|
+
"app/views/kaminari/lolita/_next_page.html.erb",
|
91
|
+
"app/views/kaminari/lolita/_page.html.erb",
|
92
|
+
"app/views/kaminari/lolita/_paginator.html.erb",
|
93
|
+
"app/views/kaminari/lolita/_prev_page.html.erb",
|
86
94
|
"app/views/layouts/lolita/application.html.erb",
|
87
95
|
"app/views/lolita/info/index.html.erb",
|
88
96
|
"app/views/lolita/rest/form.html.erb",
|
@@ -106,7 +114,6 @@ Gem::Specification.new do |s|
|
|
106
114
|
"lib/lolita/adapter/abstract_adapter.rb",
|
107
115
|
"lib/lolita/adapter/active_record.rb",
|
108
116
|
"lib/lolita/adapter/mongoid.rb",
|
109
|
-
"lib/lolita/base_configuration.rb",
|
110
117
|
"lib/lolita/builder.rb",
|
111
118
|
"lib/lolita/configuration/base.rb",
|
112
119
|
"lib/lolita/configuration/column.rb",
|
@@ -155,6 +162,8 @@ Gem::Specification.new do |s|
|
|
155
162
|
"lib/lolita/ruby_ext/accessors.rb",
|
156
163
|
"lib/lolita/support/formatter.rb",
|
157
164
|
"lib/lolita/support/formatter/rails.rb",
|
165
|
+
"lib/lolita/system_configuration/application.rb",
|
166
|
+
"lib/lolita/system_configuration/base.rb",
|
158
167
|
"lib/lolita/test/matchers.rb",
|
159
168
|
"lolita.gemspec",
|
160
169
|
"public/images/lolita/plus.png",
|
@@ -403,6 +412,7 @@ Gem::Specification.new do |s|
|
|
403
412
|
s.add_runtime_dependency(%q<kaminari>, ["~> 0.12.4"])
|
404
413
|
s.add_runtime_dependency(%q<abstract>, [">= 0"])
|
405
414
|
s.add_runtime_dependency(%q<builder>, ["~> 2.1.2"])
|
415
|
+
s.add_runtime_dependency(%q<haml>, ["~> 3.1.2"])
|
406
416
|
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
407
417
|
s.add_development_dependency(%q<rspec>, ["~> 2.6.0"])
|
408
418
|
s.add_development_dependency(%q<rspec-rails>, ["~> 2.6.0"])
|
@@ -418,6 +428,7 @@ Gem::Specification.new do |s|
|
|
418
428
|
s.add_dependency(%q<kaminari>, ["~> 0.12.4"])
|
419
429
|
s.add_dependency(%q<abstract>, [">= 0"])
|
420
430
|
s.add_dependency(%q<builder>, ["~> 2.1.2"])
|
431
|
+
s.add_dependency(%q<haml>, ["~> 3.1.2"])
|
421
432
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
422
433
|
s.add_dependency(%q<rspec>, ["~> 2.6.0"])
|
423
434
|
s.add_dependency(%q<rspec-rails>, ["~> 2.6.0"])
|
@@ -434,6 +445,7 @@ Gem::Specification.new do |s|
|
|
434
445
|
s.add_dependency(%q<kaminari>, ["~> 0.12.4"])
|
435
446
|
s.add_dependency(%q<abstract>, [">= 0"])
|
436
447
|
s.add_dependency(%q<builder>, ["~> 2.1.2"])
|
448
|
+
s.add_dependency(%q<haml>, ["~> 3.1.2"])
|
437
449
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
438
450
|
s.add_dependency(%q<rspec>, ["~> 2.6.0"])
|
439
451
|
s.add_dependency(%q<rspec-rails>, ["~> 2.6.0"])
|
@@ -21,22 +21,17 @@ $(function(){
|
|
21
21
|
}
|
22
22
|
})
|
23
23
|
}
|
24
|
+
function save_all(){
|
25
|
+
var tab = $("#content").children("div[data-tabs-url]")
|
26
|
+
save_tab(tab)
|
27
|
+
}
|
24
28
|
// Submit all forms through Ajax when Save All button clicked.
|
25
29
|
$("button.save-all").live('click',function(){
|
26
30
|
//var tab=$(this).parents("div[data-tabs-url]")
|
27
|
-
|
28
|
-
save_tab(tab)
|
31
|
+
save_all()
|
29
32
|
})
|
30
33
|
// All tabs are closable when clicked on tab title.
|
31
|
-
$(".tab .tab-title").live('click',function(){
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
tab_title.parents(".tab").find(".tab-content").show("fast")
|
36
|
-
}else{
|
37
|
-
tab_title.parents(".tab").find(".tab-content").hide("fast")
|
38
|
-
}
|
39
|
-
tab_title.data("closed",!closed)
|
40
|
-
})
|
41
|
-
// Flash is hidden when clicked on
|
42
|
-
})
|
34
|
+
$(".tab.minimized .tab-title").live('click',function(){
|
35
|
+
$(this).parent().toggleClass("minimized", 200)
|
36
|
+
})
|
37
|
+
})
|
@@ -1,10 +1,22 @@
|
|
1
|
+
html,body{
|
2
|
+
height: 100%;
|
3
|
+
}
|
1
4
|
body {background: #f3f3f3; font-size: 13px;}
|
2
5
|
|
3
6
|
a, a:visited, a:active {color: #7ac1ed; text-decoration: none;}
|
4
7
|
input[type="button"] {vertical-align: top; padding: 3px 9px;}
|
5
8
|
h1 {font-size: 28px; font-weight: normal; letter-spacing: -1px; line-height: 85px;}
|
6
9
|
|
7
|
-
#container {
|
10
|
+
#container {
|
11
|
+
width: 90%;
|
12
|
+
min-height: 100%;height: auto !important;height: 100%;margin: 0 auto -30px;
|
13
|
+
}
|
14
|
+
#container:before{ /* Opera and IE8 "redraw" bug fix */
|
15
|
+
content:"";
|
16
|
+
float:left;
|
17
|
+
height:100%;
|
18
|
+
margin-top:-999em;
|
19
|
+
}
|
8
20
|
|
9
21
|
/* same button styles for links and both types of html buttons */
|
10
22
|
button, a.button, input[type="button"] {
|
@@ -31,16 +43,17 @@ header nav .username {margin-right: 15px;}
|
|
31
43
|
|
32
44
|
/* vertical middle container */
|
33
45
|
|
34
|
-
#main {position: relative; padding-left: 150px;} /* setting the left portion width for navigation */
|
46
|
+
#main {position: relative; padding-left: 150px; margin-bottom: 50px;} /* setting the left portion width for navigation */
|
35
47
|
|
36
48
|
/* ---------------------------------------------- */
|
37
49
|
|
38
50
|
/* form styles */
|
39
51
|
|
40
52
|
#main .box form {background: #FFF; padding: 30px 25px;}
|
53
|
+
#main .box form input {background: #FFF;}
|
41
54
|
#main .box form label {color: #c3c3c3; font-size: 13px;}
|
42
55
|
#main .box form select {min-width: 150px;}
|
43
|
-
#main .box form .field {margin: 10px 0;}
|
56
|
+
#main .box form .field {margin: 10px 0; overflow: hidden;}
|
44
57
|
#main .box form .field:first-child input {
|
45
58
|
font-size: 24px;
|
46
59
|
-moz-border-radius: 5px;
|
@@ -68,11 +81,13 @@ header nav .username {margin-right: 15px;}
|
|
68
81
|
-webkit-box-sizing: border-box;
|
69
82
|
box-sizing: border-box; /* IE7 does not support it, IE8 does */
|
70
83
|
}
|
84
|
+
|
85
|
+
#main .box form .field.boolean .field-value {float: left; width: 20px; margin: 0 5px 0 0;} /* for checkboxes */
|
71
86
|
/* ----------------------------------------------*/
|
72
87
|
|
73
88
|
/* nested forms */
|
74
89
|
|
75
|
-
#main .box form .nested_form {}
|
90
|
+
#main .box form .nested_form {margin: 10px 0;}
|
76
91
|
#main .box form .nested_form label {display: block; margin-bottom: 5px;}
|
77
92
|
#main .box form .nested_form .fields {
|
78
93
|
margin: 5px 0 5px 50px;
|
@@ -95,11 +110,14 @@ header nav .username {margin-right: 15px;}
|
|
95
110
|
/* -------------------------------- */
|
96
111
|
|
97
112
|
/* error fields and notifications */
|
98
|
-
|
99
|
-
.
|
113
|
+
|
114
|
+
#main .box form .field_with_errors input,
|
115
|
+
#main .box form .field_with_errors textarea {background: #ffe6e7;}
|
100
116
|
.inline-errors {padding-top: 3px; color:#F66; font-size: 110%;}
|
101
117
|
.errorExplanation {color:#F66; font-size: 110%; padding:25px 25px 0; background:white;}
|
102
118
|
|
119
|
+
.nested_form .fields .field_with_errors {display: inline;}
|
120
|
+
|
103
121
|
#flash {
|
104
122
|
position: fixed;
|
105
123
|
top: 0;
|
@@ -117,19 +135,23 @@ header nav .username {margin-right: 15px;}
|
|
117
135
|
/* ---------------------------------- */
|
118
136
|
|
119
137
|
/* save box */
|
138
|
+
|
120
139
|
#main .box .save {padding: 20px 10px;}
|
121
140
|
#main .box .last-save {color: #808080; margin-bottom: 5px;}
|
122
141
|
#main .box .save button {
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
142
|
+
width: 100%;
|
143
|
+
padding: 10px 0;
|
144
|
+
font-size: 24px;
|
145
|
+
background: #ab8def;
|
146
|
+
color: #ffd;
|
128
147
|
}
|
148
|
+
#main .box .save button:active {position: relative; top: 1px;}
|
149
|
+
|
129
150
|
/* ---------------------------------- */
|
130
151
|
|
131
152
|
|
132
153
|
/* navigation styles on left */
|
154
|
+
|
133
155
|
#main nav {position: absolute; left: 0; width: 150px; margin-top: 5px;} /* width just for now */
|
134
156
|
#main nav ul {margin-bottom: 50px;}
|
135
157
|
#main nav ul.subtree{margin-bottom: 0px;}
|
@@ -160,23 +182,41 @@ header nav .username {margin-right: 15px;}
|
|
160
182
|
/* --------------------------------------------- */
|
161
183
|
|
162
184
|
/* main content part */
|
185
|
+
|
163
186
|
#content {overflow: visible; position: relative;} /* overflow for clearing containing floats */
|
164
187
|
#content .secondary {position: absolute; right: 0; width: 23%;}
|
165
188
|
#content.with-secondary {padding-right: 25%;}
|
189
|
+
|
166
190
|
/* --------------------------------------------- */
|
167
191
|
|
168
|
-
footer {
|
192
|
+
footer {
|
193
|
+
height: 30px;
|
194
|
+
text-align: right;
|
195
|
+
width:90%;
|
196
|
+
clear:both;
|
197
|
+
margin: 0 auto;
|
198
|
+
}
|
199
|
+
.push{
|
200
|
+
padding-bottom: 30px;
|
201
|
+
}
|
202
|
+
/* for not leaving empty space in bottom */
|
203
|
+
#powered{
|
204
|
+
font-size: 11px;
|
205
|
+
margin-right:10px;
|
206
|
+
}
|
169
207
|
|
170
208
|
/* boxes that, possibly, will be draggable/droppable */
|
209
|
+
|
171
210
|
#main .box { /* list-container for small/big bordered box that takes all available parent width */
|
172
211
|
border: 5px solid #d5d5d5;
|
173
212
|
-moz-border-radius: 5px;
|
174
213
|
-webkit-border-radius: 5px;
|
175
214
|
border-radius: 5px;
|
176
|
-
|
215
|
+
margin-bottom: 10px;
|
177
216
|
}
|
178
217
|
|
179
218
|
.boxtitle {position: relative; z-index: 2}
|
219
|
+
|
180
220
|
.boxtitle h1 {padding: 35px 25px 15px; line-height: 1; cursor: pointer;} /* h1 contains bgcolor, color and text position because arrow needs different bg and it follows after */
|
181
221
|
.boxtitle .arrow {
|
182
222
|
position: absolute;
|
@@ -185,6 +225,35 @@ footer {height: 50px;} /* for not leaving empty space in bottom */
|
|
185
225
|
border-style: solid;
|
186
226
|
border-width: 10px 10px 0;
|
187
227
|
}
|
228
|
+
.boxtitle.grey .arrow {
|
229
|
+
border-color: #e2e2e2 transparent transparent;
|
230
|
+
}
|
231
|
+
|
232
|
+
#main .tab.box.default {border: none;} /* styles for not-on-top grey boxes */
|
233
|
+
#main .tab.box.default .boxtitle {
|
234
|
+
border-radius: 5px 5px 0 0;
|
235
|
+
-moz-border-radius: 5px 5px 0 0;
|
236
|
+
-webkit-border-radius: 5px 5px 0 0;
|
237
|
+
}
|
238
|
+
#main .tab.box.default form {
|
239
|
+
border: 5px solid #e2e2e2;
|
240
|
+
border-top: none;
|
241
|
+
border-radius: 0 0 5px 5px;
|
242
|
+
-moz-border-radius: 0 0 5px 5px;
|
243
|
+
-webkit-border-radius: 0 0 5px 5px;
|
244
|
+
}
|
245
|
+
|
246
|
+
|
247
|
+
#main .tab.box.minimized .boxtitle {
|
248
|
+
border-radius: 5px;
|
249
|
+
-moz-border-radius: 5px;
|
250
|
+
-webkit-border-radius: 5px;
|
251
|
+
height: 50px;
|
252
|
+
}
|
253
|
+
#main .tab.box.minimized .boxtitle h1 {font-size: 16px; line-height: 50px; padding: 0 0 0 15px;}
|
254
|
+
#main .tab.box.minimized .boxtitle .arrow {display: none;}
|
255
|
+
#main .tab.box.minimized form {display: none;}
|
256
|
+
|
188
257
|
/* ----------------------------------------------*/
|
189
258
|
|
190
259
|
/* different colors*/
|
@@ -196,8 +265,8 @@ footer {height: 50px;} /* for not leaving empty space in bottom */
|
|
196
265
|
.black, a.black {color: #f1f1f1;}
|
197
266
|
.grey {
|
198
267
|
background: #ededed; /* for IE, Opera */
|
199
|
-
background: -moz-linear-gradient(top, #
|
200
|
-
background: -webkit-linear-gradient(top, #
|
268
|
+
background: -moz-linear-gradient(top, #e4e4e4, #e2e2e2);
|
269
|
+
background: -webkit-linear-gradient(top, #e4e4e4, #e2e2e2);
|
201
270
|
}
|
202
271
|
.grey, a.grey {color: #8f8f8f;}
|
203
272
|
/* --------------------------------------------- */
|
@@ -209,9 +278,9 @@ footer {height: 50px;} /* for not leaving empty space in bottom */
|
|
209
278
|
.tools > div > * {margin-right: 10px;}
|
210
279
|
|
211
280
|
a.create {
|
212
|
-
|
281
|
+
position: relative;
|
213
282
|
display: block;
|
214
|
-
|
283
|
+
z-index: 1;
|
215
284
|
background: #9d81f8;
|
216
285
|
background: -moz-linear-gradient(top, #ae91eb, #9d81f8);
|
217
286
|
background: -webkit-linear-gradient(top, #ae91eb, #9d81f8);
|
@@ -244,6 +313,8 @@ a.create {
|
|
244
313
|
.list table tbody tr .tool-cell a {visibility: hidden; margin-right: 5px;}
|
245
314
|
.list table tbody tr:hover .tool-cell a {visibility: visible;}
|
246
315
|
|
316
|
+
.list table td a:active {position: relative; top: 1px;}
|
317
|
+
|
247
318
|
/* filter */
|
248
319
|
#main form.filter {
|
249
320
|
background: #F3F3F3;
|
@@ -262,6 +333,31 @@ a.create {
|
|
262
333
|
}
|
263
334
|
/* --------------------------------------------- */
|
264
335
|
|
336
|
+
/* Pagination */
|
337
|
+
|
338
|
+
#main nav.pagination {
|
339
|
+
width: 100%;
|
340
|
+
margin-top: 20px;
|
341
|
+
text-align: center;
|
342
|
+
position: absolute;
|
343
|
+
}
|
344
|
+
#main nav.pagination span.current,
|
345
|
+
#main nav.pagination span.page a {
|
346
|
+
display: inline-block;
|
347
|
+
min-width: 25px; height: 25px; line-height: 25px;
|
348
|
+
font-size: 13px;
|
349
|
+
border: 1px solid #d5d5d5;
|
350
|
+
padding: 0 5px;
|
351
|
+
}
|
352
|
+
#main nav.pagination span.page a:hover {background: #d5d5d5;}
|
353
|
+
#main nav.pagination span.current {background: #9d81f8; color: #fff;}
|
354
|
+
#main nav.pagination span.first,
|
355
|
+
#main nav.pagination span.prev {margin-right: 5px}
|
356
|
+
#main nav.pagination span.next,
|
357
|
+
#main nav.pagination span.last {margin-left: 5px;}
|
358
|
+
|
359
|
+
/* --------------------------------------------- */
|
360
|
+
|
265
361
|
/* TinyMCE advanced theme's skin "Cirkuit" overrides */
|
266
362
|
|
267
363
|
#content .cirkuitSkin table.mceLayout {
|
@@ -344,5 +440,4 @@ a.create {
|
|
344
440
|
{position: relative;}
|
345
441
|
.ie8 .black {-pie-background: linear-gradient(top, #686868, #2f2f2f);}
|
346
442
|
.ie8 #flash {-pie-background: rgba(256,256,256,0.9);}
|
347
|
-
/* ----------------------------------------------*/
|
348
|
-
/* ----------------------------------------------*/
|
443
|
+
/* ----------------------------------------------*/
|
data/spec/lolita_spec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lolita
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.17
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-
|
12
|
+
date: 2011-09-01 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &81922500 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.0.10
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *81922500
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: kaminari
|
27
|
-
requirement: &
|
27
|
+
requirement: &81922130 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 0.12.4
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *81922130
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: abstract
|
38
|
-
requirement: &
|
38
|
+
requirement: &81921510 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *81921510
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: builder
|
49
|
-
requirement: &
|
49
|
+
requirement: &81920970 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,10 +54,21 @@ dependencies:
|
|
54
54
|
version: 2.1.2
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *81920970
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: haml
|
60
|
+
requirement: &81920620 !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ~>
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 3.1.2
|
66
|
+
type: :runtime
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *81920620
|
58
69
|
- !ruby/object:Gem::Dependency
|
59
70
|
name: jeweler
|
60
|
-
requirement: &
|
71
|
+
requirement: &81920210 !ruby/object:Gem::Requirement
|
61
72
|
none: false
|
62
73
|
requirements:
|
63
74
|
- - ~>
|
@@ -65,10 +76,10 @@ dependencies:
|
|
65
76
|
version: 1.5.2
|
66
77
|
type: :development
|
67
78
|
prerelease: false
|
68
|
-
version_requirements: *
|
79
|
+
version_requirements: *81920210
|
69
80
|
- !ruby/object:Gem::Dependency
|
70
81
|
name: rspec
|
71
|
-
requirement: &
|
82
|
+
requirement: &81919760 !ruby/object:Gem::Requirement
|
72
83
|
none: false
|
73
84
|
requirements:
|
74
85
|
- - ~>
|
@@ -76,10 +87,10 @@ dependencies:
|
|
76
87
|
version: 2.6.0
|
77
88
|
type: :development
|
78
89
|
prerelease: false
|
79
|
-
version_requirements: *
|
90
|
+
version_requirements: *81919760
|
80
91
|
- !ruby/object:Gem::Dependency
|
81
92
|
name: rspec-rails
|
82
|
-
requirement: &
|
93
|
+
requirement: &81919250 !ruby/object:Gem::Requirement
|
83
94
|
none: false
|
84
95
|
requirements:
|
85
96
|
- - ~>
|
@@ -87,10 +98,10 @@ dependencies:
|
|
87
98
|
version: 2.6.0
|
88
99
|
type: :development
|
89
100
|
prerelease: false
|
90
|
-
version_requirements: *
|
101
|
+
version_requirements: *81919250
|
91
102
|
- !ruby/object:Gem::Dependency
|
92
103
|
name: factory_girl
|
93
|
-
requirement: &
|
104
|
+
requirement: &81918840 !ruby/object:Gem::Requirement
|
94
105
|
none: false
|
95
106
|
requirements:
|
96
107
|
- - ! '>='
|
@@ -98,10 +109,10 @@ dependencies:
|
|
98
109
|
version: '0'
|
99
110
|
type: :development
|
100
111
|
prerelease: false
|
101
|
-
version_requirements: *
|
112
|
+
version_requirements: *81918840
|
102
113
|
- !ruby/object:Gem::Dependency
|
103
114
|
name: ffaker
|
104
|
-
requirement: &
|
115
|
+
requirement: &81918330 !ruby/object:Gem::Requirement
|
105
116
|
none: false
|
106
117
|
requirements:
|
107
118
|
- - ! '>='
|
@@ -109,10 +120,10 @@ dependencies:
|
|
109
120
|
version: '0'
|
110
121
|
type: :development
|
111
122
|
prerelease: false
|
112
|
-
version_requirements: *
|
123
|
+
version_requirements: *81918330
|
113
124
|
- !ruby/object:Gem::Dependency
|
114
125
|
name: ruby-debug19
|
115
|
-
requirement: &
|
126
|
+
requirement: &81917820 !ruby/object:Gem::Requirement
|
116
127
|
none: false
|
117
128
|
requirements:
|
118
129
|
- - ! '>='
|
@@ -120,10 +131,10 @@ dependencies:
|
|
120
131
|
version: '0'
|
121
132
|
type: :development
|
122
133
|
prerelease: false
|
123
|
-
version_requirements: *
|
134
|
+
version_requirements: *81917820
|
124
135
|
- !ruby/object:Gem::Dependency
|
125
136
|
name: cucumber-rails
|
126
|
-
requirement: &
|
137
|
+
requirement: &81917420 !ruby/object:Gem::Requirement
|
127
138
|
none: false
|
128
139
|
requirements:
|
129
140
|
- - ! '>='
|
@@ -131,10 +142,10 @@ dependencies:
|
|
131
142
|
version: '0'
|
132
143
|
type: :development
|
133
144
|
prerelease: false
|
134
|
-
version_requirements: *
|
145
|
+
version_requirements: *81917420
|
135
146
|
- !ruby/object:Gem::Dependency
|
136
147
|
name: capybara
|
137
|
-
requirement: &
|
148
|
+
requirement: &81916940 !ruby/object:Gem::Requirement
|
138
149
|
none: false
|
139
150
|
requirements:
|
140
151
|
- - ! '>='
|
@@ -142,10 +153,10 @@ dependencies:
|
|
142
153
|
version: '0'
|
143
154
|
type: :development
|
144
155
|
prerelease: false
|
145
|
-
version_requirements: *
|
156
|
+
version_requirements: *81916940
|
146
157
|
- !ruby/object:Gem::Dependency
|
147
158
|
name: database_cleaner
|
148
|
-
requirement: &
|
159
|
+
requirement: &81916650 !ruby/object:Gem::Requirement
|
149
160
|
none: false
|
150
161
|
requirements:
|
151
162
|
- - ! '>='
|
@@ -153,10 +164,10 @@ dependencies:
|
|
153
164
|
version: '0'
|
154
165
|
type: :development
|
155
166
|
prerelease: false
|
156
|
-
version_requirements: *
|
167
|
+
version_requirements: *81916650
|
157
168
|
- !ruby/object:Gem::Dependency
|
158
169
|
name: akephalos
|
159
|
-
requirement: &
|
170
|
+
requirement: &81916370 !ruby/object:Gem::Requirement
|
160
171
|
none: false
|
161
172
|
requirements:
|
162
173
|
- - ! '>='
|
@@ -164,7 +175,7 @@ dependencies:
|
|
164
175
|
version: '0'
|
165
176
|
type: :development
|
166
177
|
prerelease: false
|
167
|
-
version_requirements: *
|
178
|
+
version_requirements: *81916370
|
168
179
|
description: ! 'Great Rails CMS, that turns your business logic into good-looking,
|
169
180
|
fully functional workspace. '
|
170
181
|
email: support@ithouse.lv
|
@@ -230,6 +241,7 @@ files:
|
|
230
241
|
- app/views/components/lolita/configuration/nested_form/_display.html.erb
|
231
242
|
- app/views/components/lolita/configuration/nested_form/_fields.html.erb
|
232
243
|
- app/views/components/lolita/configuration/tab/_display.html.erb
|
244
|
+
- app/views/components/lolita/configuration/tab/_error_msg.html.erb
|
233
245
|
- app/views/components/lolita/configuration/tab/_fields.html.erb
|
234
246
|
- app/views/components/lolita/configuration/tab/_form.html.erb
|
235
247
|
- app/views/components/lolita/configuration/tab/content/_display.html.erb
|
@@ -240,6 +252,13 @@ files:
|
|
240
252
|
- app/views/components/lolita/shared/_flash.html.erb
|
241
253
|
- app/views/components/lolita/shared/_header.html.erb
|
242
254
|
- app/views/components/lolita/shared/_right_sidebar.html.erb
|
255
|
+
- app/views/kaminari/lolita/_first_page.html.erb
|
256
|
+
- app/views/kaminari/lolita/_gap.html.erb
|
257
|
+
- app/views/kaminari/lolita/_last_page.html.erb
|
258
|
+
- app/views/kaminari/lolita/_next_page.html.erb
|
259
|
+
- app/views/kaminari/lolita/_page.html.erb
|
260
|
+
- app/views/kaminari/lolita/_paginator.html.erb
|
261
|
+
- app/views/kaminari/lolita/_prev_page.html.erb
|
243
262
|
- app/views/layouts/lolita/application.html.erb
|
244
263
|
- app/views/lolita/info/index.html.erb
|
245
264
|
- app/views/lolita/rest/form.html.erb
|
@@ -263,7 +282,6 @@ files:
|
|
263
282
|
- lib/lolita/adapter/abstract_adapter.rb
|
264
283
|
- lib/lolita/adapter/active_record.rb
|
265
284
|
- lib/lolita/adapter/mongoid.rb
|
266
|
-
- lib/lolita/base_configuration.rb
|
267
285
|
- lib/lolita/builder.rb
|
268
286
|
- lib/lolita/configuration/base.rb
|
269
287
|
- lib/lolita/configuration/column.rb
|
@@ -312,6 +330,8 @@ files:
|
|
312
330
|
- lib/lolita/ruby_ext/accessors.rb
|
313
331
|
- lib/lolita/support/formatter.rb
|
314
332
|
- lib/lolita/support/formatter/rails.rb
|
333
|
+
- lib/lolita/system_configuration/application.rb
|
334
|
+
- lib/lolita/system_configuration/base.rb
|
315
335
|
- lib/lolita/test/matchers.rb
|
316
336
|
- lolita.gemspec
|
317
337
|
- public/images/lolita/plus.png
|
@@ -507,7 +527,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
507
527
|
version: '0'
|
508
528
|
segments:
|
509
529
|
- 0
|
510
|
-
hash:
|
530
|
+
hash: 1050265363
|
511
531
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
512
532
|
none: false
|
513
533
|
requirements:
|