jquery-datatables-rails 3.2.0 → 3.3.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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/dataTables/bootstrap/2/jquery.dataTables.bootstrap.js +110 -96
- data/app/assets/javascripts/dataTables/bootstrap/3/jquery.dataTables.bootstrap.js +6 -6
- data/app/assets/javascripts/dataTables/extras/dataTables.colReorder.js +28 -27
- data/app/assets/javascripts/dataTables/extras/dataTables.colVis.js +27 -11
- data/app/assets/javascripts/dataTables/extras/dataTables.fixedColumns.js +53 -29
- data/app/assets/javascripts/dataTables/extras/dataTables.responsive.js +110 -47
- data/app/assets/javascripts/dataTables/extras/dataTables.tableTools.js +90 -25
- data/app/assets/javascripts/dataTables/jquery.dataTables.foundation.js +133 -139
- data/app/assets/javascripts/dataTables/jquery.dataTables.js +483 -375
- data/app/assets/javascripts/dataTables/jquery.dataTables.sorting.numbersHtml.js +37 -14
- data/app/assets/javascripts/dataTables/jquery.dataTables.typeDetection.numbersHtml.js +49 -33
- data/app/assets/media/dataTables/extras/swf/copy_csv_xls.swf +0 -0
- data/app/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf +0 -0
- data/app/assets/stylesheets/dataTables/bootstrap/2/jquery.dataTables.bootstrap.scss +34 -9
- data/app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss +122 -31
- data/app/assets/stylesheets/dataTables/extras/dataTables.colvis.jqueryui.scss +18 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.fixedColumns.scss +1 -0
- data/app/assets/stylesheets/dataTables/extras/dataTables.responsive.scss +29 -12
- data/app/assets/stylesheets/dataTables/extras/dataTables.tableTools.scss +43 -19
- data/app/assets/stylesheets/dataTables/jquery.dataTables.foundation.scss +15 -4
- data/app/assets/stylesheets/dataTables/jquery.dataTables.scss +22 -11
- data/lib/jquery/datatables/rails/version.rb +1 -1
- metadata +18 -18
@@ -7,6 +7,8 @@ ul.ColVis_collection li {
|
|
7
7
|
ul.ColVis_collection {
|
8
8
|
margin: 0;
|
9
9
|
padding: 0;
|
10
|
+
overflow: hidden;
|
11
|
+
z-index: 2002;
|
10
12
|
}
|
11
13
|
|
12
14
|
ul.ColVis_collection li {
|
@@ -20,4 +22,20 @@ ul.ColVis_collection li span {
|
|
20
22
|
display: inline-block;
|
21
23
|
padding-left: 0.5em;
|
22
24
|
cursor: pointer;
|
25
|
+
}
|
26
|
+
|
27
|
+
div.ColVis_collectionBackground {
|
28
|
+
position: fixed;
|
29
|
+
top: 0;
|
30
|
+
left: 0;
|
31
|
+
height: 100%;
|
32
|
+
width: 100%;
|
33
|
+
background-color: black;
|
34
|
+
z-index: 1100;
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
div.ColVis_catcher {
|
39
|
+
position: absolute;
|
40
|
+
z-index: 1101;
|
23
41
|
}
|
@@ -30,9 +30,9 @@
|
|
30
30
|
//
|
31
31
|
table.dataTable {
|
32
32
|
// Styling for the `inline` type
|
33
|
-
&.dtr-inline.collapsed tbody {
|
34
|
-
td:first-child,
|
35
|
-
th:first-child {
|
33
|
+
&.dtr-inline.collapsed > tbody {
|
34
|
+
> tr > td:first-child,
|
35
|
+
> tr > th:first-child {
|
36
36
|
position: relative;
|
37
37
|
padding-left: 30px;
|
38
38
|
cursor: pointer;
|
@@ -51,23 +51,40 @@ table.dataTable {
|
|
51
51
|
}
|
52
52
|
}
|
53
53
|
|
54
|
-
tr.parent {
|
55
|
-
td:first-child:before,
|
56
|
-
th:first-child:before {
|
54
|
+
> tr.parent {
|
55
|
+
> td:first-child:before,
|
56
|
+
> th:first-child:before {
|
57
57
|
@include control-close;
|
58
58
|
}
|
59
59
|
}
|
60
60
|
|
61
|
-
tr.child td:before {
|
61
|
+
> tr.child td:before {
|
62
62
|
display: none;
|
63
63
|
}
|
64
64
|
}
|
65
65
|
|
66
|
+
// DataTables' `compact` styling
|
67
|
+
&.dtr-inline.collapsed.compact > tbody {
|
68
|
+
> tr > td:first-child,
|
69
|
+
> tr > th:first-child {
|
70
|
+
padding-left: 27px;
|
71
|
+
|
72
|
+
&:before {
|
73
|
+
top: 5px;
|
74
|
+
left: 4px;
|
75
|
+
height: 14px;
|
76
|
+
width: 14px;
|
77
|
+
border-radius: 14px;
|
78
|
+
line-height: 12px;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
66
83
|
|
67
84
|
// Styling for the `column` type
|
68
|
-
&.dtr-column tbody {
|
69
|
-
td.control,
|
70
|
-
th.control {
|
85
|
+
&.dtr-column > tbody {
|
86
|
+
> tr > td.control,
|
87
|
+
> tr > th.control {
|
71
88
|
position: relative;
|
72
89
|
cursor: pointer;
|
73
90
|
|
@@ -83,7 +100,7 @@ table.dataTable {
|
|
83
100
|
}
|
84
101
|
}
|
85
102
|
|
86
|
-
tr.parent {
|
103
|
+
> tr.parent {
|
87
104
|
td.control:before,
|
88
105
|
th.control:before {
|
89
106
|
@include control-close;
|
@@ -93,7 +110,7 @@ table.dataTable {
|
|
93
110
|
|
94
111
|
|
95
112
|
// Child row styling
|
96
|
-
tr.child {
|
113
|
+
> tbody > tr.child {
|
97
114
|
padding: 0.5em 1em;
|
98
115
|
|
99
116
|
&:hover {
|
@@ -5,7 +5,7 @@
|
|
5
5
|
* Language: Javascript
|
6
6
|
* License: GPL v2 / 3 point BSD
|
7
7
|
* Project: DataTables
|
8
|
-
*
|
8
|
+
*
|
9
9
|
* Copyright 2009-2012 Allan Jardine, all rights reserved.
|
10
10
|
*
|
11
11
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
@@ -90,13 +90,13 @@ button.DTTT_button {
|
|
90
90
|
padding: 3px 8px;
|
91
91
|
}
|
92
92
|
|
93
|
-
.DTTT_button embed {
|
93
|
+
.DTTT_button embed {
|
94
94
|
outline: none;
|
95
95
|
}
|
96
96
|
|
97
|
-
button.DTTT_button:hover,
|
98
|
-
div.DTTT_button:hover,
|
99
|
-
a.DTTT_button:hover {
|
97
|
+
button.DTTT_button:hover:not(.DTTT_disabled),
|
98
|
+
div.DTTT_button:hover:not(.DTTT_disabled),
|
99
|
+
a.DTTT_button:hover:not(.DTTT_disabled) {
|
100
100
|
border: 1px solid #666;
|
101
101
|
text-decoration: none !important;
|
102
102
|
|
@@ -115,12 +115,36 @@ a.DTTT_button:hover {
|
|
115
115
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
|
116
116
|
}
|
117
117
|
|
118
|
+
button.DTTT_button:focus,
|
119
|
+
div.DTTT_button:focus,
|
120
|
+
a.DTTT_button:focus {
|
121
|
+
border: 1px solid #426c9e;
|
122
|
+
text-shadow: 0 1px 0 #c4def1;
|
123
|
+
outline: none;
|
124
|
+
|
125
|
+
background-color: #a3d0ef 100%;
|
126
|
+
background-image: -webkit-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
|
127
|
+
background-image: -moz-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
|
128
|
+
background-image: -ms-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
|
129
|
+
background-image: -o-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
|
130
|
+
background-image: linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
|
131
|
+
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#a3d0ef', EndColorStr='#a3d0ef');
|
132
|
+
}
|
133
|
+
|
134
|
+
button.DTTT_button:active:not(.DTTT_disabled),
|
135
|
+
div.DTTT_button:active:not(.DTTT_disabled),
|
136
|
+
a.DTTT_button:active:not(.DTTT_disabled) {
|
137
|
+
-webkit-box-shadow: inset 1px 1px 3px #999999;
|
138
|
+
-moz-box-shadow: inset 1px 1px 3px #999999;
|
139
|
+
box-shadow: inset 1px 1px 3px #999999;
|
140
|
+
}
|
141
|
+
|
118
142
|
button.DTTT_disabled,
|
119
143
|
div.DTTT_disabled,
|
120
144
|
a.DTTT_disabled {
|
121
|
-
color: #999;
|
145
|
+
color: #999 !important;
|
122
146
|
border: 1px solid #d0d0d0;
|
123
|
-
|
147
|
+
cursor: default;
|
124
148
|
background: #ffffff; /* Old browsers */
|
125
149
|
background: -webkit-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
|
126
150
|
background: -moz-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* FF3.6+ */
|
@@ -158,19 +182,19 @@ a.DTTT_button_print span {
|
|
158
182
|
|
159
183
|
|
160
184
|
a.DTTT_button_csv span { background: image_url('dataTables/extras/csv.png') no-repeat bottom right; }
|
161
|
-
a.DTTT_button_csv:hover span { background
|
185
|
+
a.DTTT_button_csv:hover span { background: image_url('dataTables/extras/csv_hover.png') no-repeat center right; }
|
162
186
|
|
163
187
|
a.DTTT_button_xls span { background: image_url('dataTables/extras/xls.png') no-repeat center right; }
|
164
|
-
a.DTTT_button_xls:hover span { background: #f0f0f0
|
188
|
+
a.DTTT_button_xls:hover span { background: #f0f0f0 image_url('dataTables/extras/xls_hover.png') no-repeat center right; }
|
165
189
|
|
166
190
|
a.DTTT_button_copy span { background: image_url('dataTables/extras/copy.png') no-repeat center right; }
|
167
|
-
a.DTTT_button_copy:hover span { background: #f0f0f0
|
191
|
+
a.DTTT_button_copy:hover span { background: #f0f0f0 image_url('dataTables/extras/copy_hover.png') no-repeat center right; }
|
168
192
|
|
169
193
|
a.DTTT_button_pdf span { background: image_url('dataTables/extras/pdf.png') no-repeat center right; }
|
170
|
-
a.DTTT_button_pdf:hover span { background: #f0f0f0
|
194
|
+
a.DTTT_button_pdf:hover span { background: #f0f0f0 image_url('dataTables/extras/pdf_hover.png') no-repeat center right; }
|
171
195
|
|
172
196
|
a.DTTT_button_print span { background: image_url('dataTables/extras/print.png') no-repeat center right; }
|
173
|
-
a.DTTT_button_print:hover span { background: #f0f0f0
|
197
|
+
a.DTTT_button_print:hover span { background: #f0f0f0 image_url('dataTables/extras/print_hover.png') no-repeat center right; }
|
174
198
|
|
175
199
|
*/
|
176
200
|
|
@@ -181,7 +205,7 @@ button.DTTT_button_collection span {
|
|
181
205
|
|
182
206
|
button.DTTT_button_collection:hover span {
|
183
207
|
padding-right: 17px;
|
184
|
-
background: #f0f0f0
|
208
|
+
background: #f0f0f0 image_url('dataTables/extras/collection_hover.png') no-repeat center right;
|
185
209
|
}
|
186
210
|
|
187
211
|
|
@@ -248,7 +272,7 @@ div.DTTT_collection {
|
|
248
272
|
-ms-border-radius: 5px;
|
249
273
|
-o-border-radius: 5px;
|
250
274
|
border-radius: 5px;
|
251
|
-
|
275
|
+
|
252
276
|
-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
253
277
|
-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
254
278
|
-ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
@@ -257,7 +281,7 @@ div.DTTT_collection {
|
|
257
281
|
}
|
258
282
|
|
259
283
|
div.DTTT_collection_background {
|
260
|
-
background:
|
284
|
+
background: black;
|
261
285
|
z-index: 2001;
|
262
286
|
}
|
263
287
|
|
@@ -271,7 +295,7 @@ div.DTTT_collection a.DTTT_button {
|
|
271
295
|
display: block;
|
272
296
|
float: none;
|
273
297
|
margin-bottom: 4px;
|
274
|
-
|
298
|
+
|
275
299
|
-webkit-box-shadow: 1px 1px 3px #999;
|
276
300
|
-moz-box-shadow: 1px 1px 3px #999;
|
277
301
|
-ms-box-shadow: 1px 1px 3px #999;
|
@@ -304,18 +328,18 @@ div.DTTT_collection a.DTTT_button {
|
|
304
328
|
background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
|
305
329
|
background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
|
306
330
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
|
307
|
-
|
331
|
+
|
308
332
|
opacity: 0.95;
|
309
333
|
|
310
334
|
border: 1px solid black;
|
311
335
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
312
|
-
|
336
|
+
|
313
337
|
-webkit-border-radius: 6px;
|
314
338
|
-moz-border-radius: 6px;
|
315
339
|
-ms-border-radius: 6px;
|
316
340
|
-o-border-radius: 6px;
|
317
341
|
border-radius: 6px;
|
318
|
-
|
342
|
+
|
319
343
|
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
320
344
|
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
321
345
|
-ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
@@ -9,24 +9,26 @@ div.dataTables_info {
|
|
9
9
|
font-weight: normal;
|
10
10
|
}
|
11
11
|
|
12
|
-
div.dataTables_length {
|
13
|
-
padding-top: 6px;
|
14
|
-
}
|
15
12
|
div.dataTables_length label {
|
16
13
|
float: left;
|
17
14
|
text-align: left;
|
15
|
+
margin-bottom: 0;
|
18
16
|
}
|
19
17
|
|
20
18
|
div.dataTables_length select {
|
21
19
|
width: 75px;
|
20
|
+
margin-bottom: 0;
|
22
21
|
}
|
23
22
|
|
24
23
|
div.dataTables_filter label {
|
25
24
|
float: right;
|
25
|
+
margin-bottom: 0;
|
26
26
|
}
|
27
27
|
div.dataTables_filter input {
|
28
28
|
display: inline-block !important;
|
29
29
|
width: auto !important;
|
30
|
+
margin-bottom: 0;
|
31
|
+
margin-left: 0.5em;
|
30
32
|
}
|
31
33
|
|
32
34
|
div.dataTables_info {
|
@@ -41,7 +43,7 @@ div.dataTables_paginate {
|
|
41
43
|
|
42
44
|
table.dataTable {
|
43
45
|
clear: both;
|
44
|
-
margin
|
46
|
+
margin: 0.5em 0 !important;
|
45
47
|
max-width: none !important;
|
46
48
|
width: 100%;
|
47
49
|
}
|
@@ -73,6 +75,7 @@ div.dataTables_scrollHead table {
|
|
73
75
|
|
74
76
|
div.dataTables_scrollBody table {
|
75
77
|
border-top: none;
|
78
|
+
margin-top: 0 !important;
|
76
79
|
margin-bottom: 0 !important;
|
77
80
|
}
|
78
81
|
|
@@ -82,6 +85,7 @@ div.dataTables_scrollBody tbody tr:first-child td {
|
|
82
85
|
}
|
83
86
|
|
84
87
|
div.dataTables_scrollFoot table {
|
88
|
+
margin-top: 0 !important;
|
85
89
|
border-top: none;
|
86
90
|
}
|
87
91
|
|
@@ -115,6 +119,11 @@ table.DTTT_selectable tbody tr {
|
|
115
119
|
div.DTTT {
|
116
120
|
float: left;
|
117
121
|
margin-bottom: 0;
|
122
|
+
margin-top: -0.3em;
|
123
|
+
}
|
124
|
+
|
125
|
+
div.DTTT .button {
|
126
|
+
margin: 0 0 0.25rem;
|
118
127
|
}
|
119
128
|
|
120
129
|
div.DTTT .button:hover {
|
@@ -209,3 +218,5 @@ div.DTFC_LeftBodyWrapper tbody tr:first-child td {
|
|
209
218
|
div.DTFC_LeftFootWrapper table {
|
210
219
|
border-top: none;
|
211
220
|
}
|
221
|
+
|
222
|
+
|
@@ -32,26 +32,34 @@ table.dataTable tfoot td {
|
|
32
32
|
padding: 10px 18px 6px 18px;
|
33
33
|
border-top: 1px solid #111111;
|
34
34
|
}
|
35
|
+
table.dataTable thead .sorting,
|
35
36
|
table.dataTable thead .sorting_asc,
|
36
|
-
table.dataTable thead .sorting_desc
|
37
|
-
table.dataTable thead .sorting {
|
37
|
+
table.dataTable thead .sorting_desc {
|
38
38
|
cursor: pointer;
|
39
39
|
*cursor: hand;
|
40
40
|
}
|
41
|
+
table.dataTable thead .sorting,
|
42
|
+
table.dataTable thead .sorting_asc,
|
43
|
+
table.dataTable thead .sorting_desc,
|
44
|
+
table.dataTable thead .sorting_asc_disabled,
|
45
|
+
table.dataTable thead .sorting_desc_disabled {
|
46
|
+
background-repeat: no-repeat;
|
47
|
+
background-position: center right;
|
48
|
+
}
|
41
49
|
table.dataTable thead .sorting {
|
42
|
-
background: image_url('dataTables/sort_both.png')
|
50
|
+
background-image: image_url('dataTables/sort_both.png');
|
43
51
|
}
|
44
52
|
table.dataTable thead .sorting_asc {
|
45
|
-
background: image_url('dataTables/sort_asc.png')
|
53
|
+
background-image: image_url('dataTables/sort_asc.png');
|
46
54
|
}
|
47
55
|
table.dataTable thead .sorting_desc {
|
48
|
-
background: image_url('dataTables/sort_desc.png')
|
56
|
+
background-image: image_url('dataTables/sort_desc.png');
|
49
57
|
}
|
50
58
|
table.dataTable thead .sorting_asc_disabled {
|
51
|
-
background: image_url('dataTables/sort_asc_disabled.png')
|
59
|
+
background-image: image_url('dataTables/sort_asc_disabled.png');
|
52
60
|
}
|
53
61
|
table.dataTable thead .sorting_desc_disabled {
|
54
|
-
background: image_url('dataTables/sort_desc_disabled.png')
|
62
|
+
background-image: image_url('dataTables/sort_desc_disabled.png');
|
55
63
|
}
|
56
64
|
table.dataTable tbody tr {
|
57
65
|
background-color: white;
|
@@ -203,15 +211,15 @@ table.dataTable.nowrap th, table.dataTable.nowrap td {
|
|
203
211
|
}
|
204
212
|
table.dataTable.compact thead th,
|
205
213
|
table.dataTable.compact thead td {
|
206
|
-
padding:
|
214
|
+
padding: 4px 17px 4px 4px;
|
207
215
|
}
|
208
216
|
table.dataTable.compact tfoot th,
|
209
217
|
table.dataTable.compact tfoot td {
|
210
|
-
padding:
|
218
|
+
padding: 4px;
|
211
219
|
}
|
212
220
|
table.dataTable.compact tbody th,
|
213
221
|
table.dataTable.compact tbody td {
|
214
|
-
padding: 4px
|
222
|
+
padding: 4px;
|
215
223
|
}
|
216
224
|
table.dataTable th.dt-left,
|
217
225
|
table.dataTable td.dt-left {
|
@@ -393,6 +401,9 @@ table.dataTable td {
|
|
393
401
|
/* W3C */
|
394
402
|
box-shadow: inset 0 0 3px #111;
|
395
403
|
}
|
404
|
+
.dataTables_wrapper .dataTables_paginate .ellipsis {
|
405
|
+
padding: 0 1em;
|
406
|
+
}
|
396
407
|
.dataTables_wrapper .dataTables_processing {
|
397
408
|
position: absolute;
|
398
409
|
top: 50%;
|
@@ -449,7 +460,7 @@ table.dataTable td {
|
|
449
460
|
.dataTables_wrapper:after {
|
450
461
|
visibility: hidden;
|
451
462
|
display: block;
|
452
|
-
content:
|
463
|
+
content: "";
|
453
464
|
clear: both;
|
454
465
|
height: 0;
|
455
466
|
}
|
metadata
CHANGED
@@ -1,83 +1,83 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-datatables-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robin Wenglewski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jquery-rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: sass-rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: railties
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '3.1'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.1'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: actionpack
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '3.1'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.1'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - '>='
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - '>='
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
description: ''
|
@@ -142,17 +142,17 @@ files:
|
|
142
142
|
- app/assets/javascripts/dataTables/jquery.dataTables.js
|
143
143
|
- app/assets/javascripts/dataTables/jquery.dataTables.sorting.numbersHtml.js
|
144
144
|
- app/assets/javascripts/dataTables/jquery.dataTables.typeDetection.numbersHtml.js
|
145
|
+
- app/assets/media/dataTables/extras/as3/lib/AlivePDF.swc
|
145
146
|
- app/assets/media/dataTables/extras/as3/ZeroClipboard.as
|
146
147
|
- app/assets/media/dataTables/extras/as3/ZeroClipboardPdf.as
|
147
|
-
- app/assets/media/dataTables/extras/as3/lib/AlivePDF.swc
|
148
148
|
- app/assets/media/dataTables/extras/swf/copy_csv_xls.swf
|
149
149
|
- app/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf
|
150
150
|
- app/assets/stylesheets/dataTables/bootstrap/2/jquery.dataTables.bootstrap.scss
|
151
151
|
- app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss
|
152
152
|
- app/assets/stylesheets/dataTables/extras/dataTables.autoFill.scss
|
153
153
|
- app/assets/stylesheets/dataTables/extras/dataTables.colReorder.scss
|
154
|
-
- app/assets/stylesheets/dataTables/extras/dataTables.colVis.scss
|
155
154
|
- app/assets/stylesheets/dataTables/extras/dataTables.colvis.jqueryui.scss
|
155
|
+
- app/assets/stylesheets/dataTables/extras/dataTables.colVis.scss
|
156
156
|
- app/assets/stylesheets/dataTables/extras/dataTables.fixedColumns.scss
|
157
157
|
- app/assets/stylesheets/dataTables/extras/dataTables.fixedHeader.scss
|
158
158
|
- app/assets/stylesheets/dataTables/extras/dataTables.keyTable.scss
|
@@ -166,9 +166,9 @@ files:
|
|
166
166
|
- app/assets/stylesheets/dataTables/src/demo_table_jui.css.scss
|
167
167
|
- app/assets/stylesheets/dataTables/src/jquery.dataTables_themeroller.css
|
168
168
|
- lib/generators/jquery/datatables/install_generator.rb
|
169
|
-
- lib/jquery-datatables-rails.rb
|
170
169
|
- lib/jquery/datatables/rails/engine.rb
|
171
170
|
- lib/jquery/datatables/rails/version.rb
|
171
|
+
- lib/jquery-datatables-rails.rb
|
172
172
|
homepage: https://github.com/rweng/jquery-datatables-rails
|
173
173
|
licenses: []
|
174
174
|
metadata: {}
|
@@ -178,17 +178,17 @@ require_paths:
|
|
178
178
|
- lib
|
179
179
|
required_ruby_version: !ruby/object:Gem::Requirement
|
180
180
|
requirements:
|
181
|
-
- -
|
181
|
+
- - '>='
|
182
182
|
- !ruby/object:Gem::Version
|
183
183
|
version: '0'
|
184
184
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
185
185
|
requirements:
|
186
|
-
- -
|
186
|
+
- - '>='
|
187
187
|
- !ruby/object:Gem::Version
|
188
188
|
version: '0'
|
189
189
|
requirements: []
|
190
190
|
rubyforge_project:
|
191
|
-
rubygems_version: 2.
|
191
|
+
rubygems_version: 2.0.14
|
192
192
|
signing_key:
|
193
193
|
specification_version: 4
|
194
194
|
summary: jquery datatables for rails
|