retreaverjs-rails 0.2.16 → 0.2.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/retreaverjs/compile.rb +8 -2
- data/lib/retreaverjs/rails/version.rb +1 -1
- data/package.json +12 -8
- data/vendor/assets/javascripts/retreaver.min.js +1 -1
- data/vendor/documentation/javascript/v1/Retreaver.Campaign.html +290 -331
- data/vendor/documentation/javascript/v1/Retreaver.Number.html +731 -843
- data/vendor/documentation/javascript/v1/Retreaver.html +134 -157
- data/vendor/documentation/javascript/v1/{retreaver_campaign.js.html → campaign.js.html} +17 -18
- data/vendor/documentation/javascript/v1/global.html +97 -119
- data/vendor/documentation/javascript/v1/index.html +8 -10
- data/vendor/documentation/javascript/v1/{retreaver_number.js.html → number.js.html} +7 -8
- data/vendor/documentation/javascript/v1/retreaver.js.html +7 -8
- data/vendor/documentation/javascript/v1/scripts/linenumber.js +11 -19
- data/vendor/documentation/javascript/v1/styles/jsdoc-default.css +129 -193
- data/vendor/documentation/javascript/v1/styles/prettify-tomorrow.css +1 -1
- metadata +5 -23
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Bold-webfont.eot +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Bold-webfont.svg +0 -1830
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Bold-webfont.woff +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-BoldItalic-webfont.svg +0 -1830
- data/vendor/documentation/javascript/v1/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Italic-webfont.eot +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Italic-webfont.svg +0 -1830
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Italic-webfont.woff +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Light-webfont.eot +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Light-webfont.svg +0 -1831
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Light-webfont.woff +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-LightItalic-webfont.svg +0 -1835
- data/vendor/documentation/javascript/v1/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Regular-webfont.eot +0 -0
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Regular-webfont.svg +0 -1831
- data/vendor/documentation/javascript/v1/fonts/OpenSans-Regular-webfont.woff +0 -0
@@ -1,127 +1,94 @@
|
|
1
|
-
@font-face {
|
2
|
-
font-family: 'Open Sans';
|
3
|
-
font-weight: normal;
|
4
|
-
font-style: normal;
|
5
|
-
src: url('../fonts/OpenSans-Regular-webfont.eot');
|
6
|
-
src:
|
7
|
-
local('Open Sans'),
|
8
|
-
local('OpenSans'),
|
9
|
-
url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
|
10
|
-
url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
|
11
|
-
url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
|
12
|
-
}
|
13
|
-
|
14
|
-
@font-face {
|
15
|
-
font-family: 'Open Sans Light';
|
16
|
-
font-weight: normal;
|
17
|
-
font-style: normal;
|
18
|
-
src: url('../fonts/OpenSans-Light-webfont.eot');
|
19
|
-
src:
|
20
|
-
local('Open Sans Light'),
|
21
|
-
local('OpenSans Light'),
|
22
|
-
url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
|
23
|
-
url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
|
24
|
-
url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
|
25
|
-
}
|
26
|
-
|
27
1
|
html
|
28
2
|
{
|
29
3
|
overflow: auto;
|
30
4
|
background-color: #fff;
|
31
|
-
font-size: 14px;
|
32
5
|
}
|
33
6
|
|
34
7
|
body
|
35
8
|
{
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
9
|
+
font: 14px "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans serif;
|
10
|
+
line-height: 130%;
|
11
|
+
color: #000;
|
12
|
+
background-color: #fff;
|
40
13
|
}
|
41
14
|
|
42
|
-
a
|
43
|
-
color: #
|
44
|
-
text-decoration: none;
|
15
|
+
a {
|
16
|
+
color: #444;
|
45
17
|
}
|
46
18
|
|
47
|
-
a:
|
48
|
-
|
19
|
+
a:visited {
|
20
|
+
color: #444;
|
49
21
|
}
|
50
22
|
|
51
|
-
|
52
|
-
|
53
|
-
display: block;
|
54
|
-
padding: 0px 4px;
|
23
|
+
a:active {
|
24
|
+
color: #444;
|
55
25
|
}
|
56
26
|
|
57
|
-
|
58
|
-
|
27
|
+
header
|
28
|
+
{
|
29
|
+
display: block;
|
30
|
+
padding: 6px 4px;
|
59
31
|
}
|
60
32
|
|
61
33
|
.class-description {
|
62
|
-
font-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
.class-description:empty {
|
69
|
-
margin: 0;
|
34
|
+
font-style: italic;
|
35
|
+
font-family: Palatino, 'Palatino Linotype', serif;
|
36
|
+
font-size: 130%;
|
37
|
+
line-height: 140%;
|
38
|
+
margin-bottom: 1em;
|
39
|
+
margin-top: 1em;
|
70
40
|
}
|
71
41
|
|
72
42
|
#main {
|
73
43
|
float: left;
|
74
|
-
width:
|
75
|
-
}
|
76
|
-
|
77
|
-
article dl {
|
78
|
-
margin-bottom: 40px;
|
44
|
+
width: 100%;
|
79
45
|
}
|
80
46
|
|
81
47
|
section
|
82
48
|
{
|
83
|
-
|
84
|
-
|
85
|
-
|
49
|
+
display: block;
|
50
|
+
|
51
|
+
background-color: #fff;
|
52
|
+
padding: 12px 24px;
|
86
53
|
border-bottom: 1px solid #ccc;
|
87
|
-
margin-right:
|
54
|
+
margin-right: 240px;
|
88
55
|
}
|
89
56
|
|
90
57
|
.variation {
|
91
58
|
display: none;
|
92
59
|
}
|
93
60
|
|
94
|
-
.
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
61
|
+
.optional:after {
|
62
|
+
content: "opt";
|
63
|
+
font-size: 60%;
|
64
|
+
color: #aaa;
|
65
|
+
font-style: italic;
|
66
|
+
font-weight: lighter;
|
99
67
|
}
|
100
68
|
|
101
69
|
nav
|
102
70
|
{
|
103
|
-
|
104
|
-
|
71
|
+
display: block;
|
72
|
+
float: left;
|
73
|
+
margin-left: -230px;
|
105
74
|
margin-top: 28px;
|
106
|
-
width:
|
107
|
-
box-sizing: border-box;
|
75
|
+
width: 220px;
|
108
76
|
border-left: 1px solid #ccc;
|
109
|
-
padding-left:
|
77
|
+
padding-left: 9px;
|
110
78
|
}
|
111
79
|
|
112
80
|
nav ul {
|
113
81
|
font-family: 'Lucida Grande', 'Lucida Sans Unicode', arial, sans-serif;
|
114
82
|
font-size: 100%;
|
115
83
|
line-height: 17px;
|
116
|
-
padding:
|
117
|
-
margin:
|
118
|
-
list-style-type:
|
84
|
+
padding:0;
|
85
|
+
margin:0;
|
86
|
+
list-style-type:none;
|
119
87
|
}
|
120
88
|
|
121
|
-
nav
|
122
|
-
|
123
|
-
|
124
|
-
color: #4D4E53;
|
89
|
+
nav h2 a, nav h2 a:visited {
|
90
|
+
color: #A35A00;
|
91
|
+
text-decoration: none;
|
125
92
|
}
|
126
93
|
|
127
94
|
nav h3 {
|
@@ -132,6 +99,18 @@ nav li {
|
|
132
99
|
margin-top: 6px;
|
133
100
|
}
|
134
101
|
|
102
|
+
nav a {
|
103
|
+
color: #5C5954;
|
104
|
+
}
|
105
|
+
|
106
|
+
nav a:visited {
|
107
|
+
color: #5C5954;
|
108
|
+
}
|
109
|
+
|
110
|
+
nav a:active {
|
111
|
+
color: #5C5954;
|
112
|
+
}
|
113
|
+
|
135
114
|
footer {
|
136
115
|
display: block;
|
137
116
|
padding: 6px;
|
@@ -140,84 +119,57 @@ footer {
|
|
140
119
|
font-size: 90%;
|
141
120
|
}
|
142
121
|
|
143
|
-
h1, h2, h3, h4 {
|
144
|
-
font-weight: 200;
|
145
|
-
margin: 0;
|
146
|
-
}
|
147
|
-
|
148
122
|
h1
|
149
123
|
{
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
124
|
+
font-size: 200%;
|
125
|
+
font-weight: bold;
|
126
|
+
letter-spacing: -0.01em;
|
127
|
+
margin: 6px 0 9px 0;
|
154
128
|
}
|
155
129
|
|
156
|
-
h2
|
130
|
+
h2
|
157
131
|
{
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
132
|
+
font-size: 170%;
|
133
|
+
font-weight: bold;
|
134
|
+
letter-spacing: -0.01em;
|
135
|
+
margin: 6px 0 3px 0;
|
162
136
|
}
|
163
137
|
|
164
138
|
h3
|
165
139
|
{
|
166
|
-
|
167
|
-
|
168
|
-
|
140
|
+
font-size: 150%;
|
141
|
+
font-weight: bold;
|
142
|
+
letter-spacing: -0.01em;
|
143
|
+
margin-top: 16px;
|
144
|
+
margin: 6px 0 3px 0;
|
169
145
|
}
|
170
146
|
|
171
147
|
h4
|
172
148
|
{
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
149
|
+
font-size: 130%;
|
150
|
+
font-weight: bold;
|
151
|
+
letter-spacing: -0.01em;
|
152
|
+
margin-top: 16px;
|
153
|
+
margin: 18px 0 3px 0;
|
154
|
+
color: #A35A00;
|
177
155
|
}
|
178
156
|
|
179
157
|
h5, .container-overview .subsection-title
|
180
158
|
{
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
159
|
+
font-size: 120%;
|
160
|
+
font-weight: bold;
|
161
|
+
letter-spacing: -0.01em;
|
162
|
+
margin: 8px 0 3px -16px;
|
185
163
|
}
|
186
164
|
|
187
165
|
h6
|
188
166
|
{
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
167
|
+
font-size: 100%;
|
168
|
+
letter-spacing: -0.01em;
|
169
|
+
margin: 6px 0 3px 0;
|
170
|
+
font-style: italic;
|
193
171
|
}
|
194
172
|
|
195
|
-
table
|
196
|
-
{
|
197
|
-
border-spacing: 0;
|
198
|
-
border: 0;
|
199
|
-
border-collapse: collapse;
|
200
|
-
}
|
201
|
-
|
202
|
-
td, th
|
203
|
-
{
|
204
|
-
border: 1px solid #ddd;
|
205
|
-
margin: 0px;
|
206
|
-
text-align: left;
|
207
|
-
vertical-align: top;
|
208
|
-
padding: 4px 6px;
|
209
|
-
display: table-cell;
|
210
|
-
}
|
211
|
-
|
212
|
-
thead tr
|
213
|
-
{
|
214
|
-
background-color: #ddd;
|
215
|
-
font-weight: bold;
|
216
|
-
}
|
217
|
-
|
218
|
-
th { border-right: 1px solid #aaa; }
|
219
|
-
tr > th:last-child { border-right: 1px solid #ddd; }
|
220
|
-
|
221
173
|
.ancestors { color: #999; }
|
222
174
|
.ancestors a
|
223
175
|
{
|
@@ -225,15 +177,10 @@ tr > th:last-child { border-right: 1px solid #ddd; }
|
|
225
177
|
text-decoration: none;
|
226
178
|
}
|
227
179
|
|
228
|
-
.clear
|
229
|
-
{
|
230
|
-
clear: both;
|
231
|
-
}
|
232
|
-
|
233
180
|
.important
|
234
181
|
{
|
235
|
-
|
236
|
-
|
182
|
+
font-weight: bold;
|
183
|
+
color: #950B02;
|
237
184
|
}
|
238
185
|
|
239
186
|
.yes-def {
|
@@ -245,12 +192,12 @@ tr > th:last-child { border-right: 1px solid #ddd; }
|
|
245
192
|
}
|
246
193
|
|
247
194
|
.name, .signature {
|
248
|
-
|
195
|
+
font-family: Consolas, "Lucida Console", Monaco, monospace;
|
249
196
|
}
|
250
197
|
|
251
198
|
.details { margin-top: 14px; border-left: 2px solid #DDD; }
|
252
|
-
.details dt { width:
|
253
|
-
.details dd { margin-left:
|
199
|
+
.details dt { width:100px; float:left; padding-left: 10px; padding-top: 6px; }
|
200
|
+
.details dd { margin-left: 50px; }
|
254
201
|
.details ul { margin: 0; }
|
255
202
|
.details ul { list-style-type: none; }
|
256
203
|
.details li { margin-left: 30px; padding-top: 6px; }
|
@@ -258,21 +205,23 @@ tr > th:last-child { border-right: 1px solid #ddd; }
|
|
258
205
|
.details .object-value { padding-top: 0; }
|
259
206
|
|
260
207
|
.description {
|
261
|
-
|
262
|
-
|
208
|
+
margin-bottom: 1em;
|
209
|
+
margin-left: -16px;
|
210
|
+
margin-top: 1em;
|
263
211
|
}
|
264
212
|
|
265
213
|
.code-caption
|
266
214
|
{
|
267
|
-
|
268
|
-
|
269
|
-
|
215
|
+
font-style: italic;
|
216
|
+
font-family: Palatino, 'Palatino Linotype', serif;
|
217
|
+
font-size: 107%;
|
218
|
+
margin: 0;
|
270
219
|
}
|
271
220
|
|
272
221
|
.prettyprint
|
273
222
|
{
|
274
|
-
|
275
|
-
|
223
|
+
border: 1px solid #ddd;
|
224
|
+
width: 80%;
|
276
225
|
overflow: auto;
|
277
226
|
}
|
278
227
|
|
@@ -282,13 +231,15 @@ tr > th:last-child { border-right: 1px solid #ddd; }
|
|
282
231
|
|
283
232
|
.prettyprint code
|
284
233
|
{
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
234
|
+
font-family: Consolas, 'Lucida Console', Monaco, monospace;
|
235
|
+
font-size: 100%;
|
236
|
+
line-height: 18px;
|
237
|
+
display: block;
|
238
|
+
padding: 4px 12px;
|
239
|
+
margin: 0;
|
240
|
+
background-color: #fff;
|
241
|
+
color: #000;
|
242
|
+
border-left: 3px #ddd solid;
|
292
243
|
}
|
293
244
|
|
294
245
|
.prettyprint code span.line
|
@@ -296,58 +247,43 @@ tr > th:last-child { border-right: 1px solid #ddd; }
|
|
296
247
|
display: inline-block;
|
297
248
|
}
|
298
249
|
|
299
|
-
.
|
250
|
+
.params, .props
|
300
251
|
{
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
-ms-user-select: none;
|
305
|
-
user-select: none;
|
252
|
+
border-spacing: 0;
|
253
|
+
border: 0;
|
254
|
+
border-collapse: collapse;
|
306
255
|
}
|
307
256
|
|
308
|
-
.
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
.prettyprint.linenums li
|
314
|
-
{
|
315
|
-
border-left: 3px #ddd solid;
|
257
|
+
.params .name, .props .name, .name code {
|
258
|
+
color: #A35A00;
|
259
|
+
font-family: Consolas, 'Lucida Console', Monaco, monospace;
|
260
|
+
font-size: 100%;
|
316
261
|
}
|
317
262
|
|
318
|
-
.
|
319
|
-
.prettyprint.linenums li.selected *
|
263
|
+
.params td, .params th, .props td, .props th
|
320
264
|
{
|
321
|
-
|
265
|
+
border: 1px solid #ddd;
|
266
|
+
margin: 0px;
|
267
|
+
text-align: left;
|
268
|
+
vertical-align: top;
|
269
|
+
padding: 4px 6px;
|
270
|
+
display: table-cell;
|
322
271
|
}
|
323
272
|
|
324
|
-
.
|
273
|
+
.params thead tr, .props thead tr
|
325
274
|
{
|
326
|
-
|
327
|
-
|
328
|
-
-ms-user-select: text;
|
329
|
-
user-select: text;
|
275
|
+
background-color: #ddd;
|
276
|
+
font-weight: bold;
|
330
277
|
}
|
331
278
|
|
332
|
-
.params .
|
333
|
-
color: #4D4E53;
|
334
|
-
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
335
|
-
font-size: 100%;
|
336
|
-
}
|
337
|
-
|
338
|
-
.params td.description > p:first-child,
|
339
|
-
.props td.description > p:first-child
|
279
|
+
.params .params thead tr, .props .props thead tr
|
340
280
|
{
|
341
|
-
|
342
|
-
|
281
|
+
background-color: #fff;
|
282
|
+
font-weight: bold;
|
343
283
|
}
|
344
284
|
|
345
|
-
.params
|
346
|
-
.props
|
347
|
-
{
|
348
|
-
margin-bottom: 0;
|
349
|
-
padding-bottom: 0;
|
350
|
-
}
|
285
|
+
.params th, .props th { border-right: 1px solid #aaa; }
|
286
|
+
.params thead .last, .props thead .last { border-right: 1px solid #ddd; }
|
351
287
|
|
352
288
|
.disabled {
|
353
289
|
color: #454545;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: retreaverjs-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Blake Hilscher
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-12-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
@@ -103,29 +103,11 @@ files:
|
|
103
103
|
- vendor/documentation/javascript/v1/Retreaver.Campaign.html
|
104
104
|
- vendor/documentation/javascript/v1/Retreaver.Number.html
|
105
105
|
- vendor/documentation/javascript/v1/Retreaver.html
|
106
|
-
- vendor/documentation/javascript/v1/
|
107
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Bold-webfont.svg
|
108
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Bold-webfont.woff
|
109
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-BoldItalic-webfont.eot
|
110
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-BoldItalic-webfont.svg
|
111
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-BoldItalic-webfont.woff
|
112
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Italic-webfont.eot
|
113
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Italic-webfont.svg
|
114
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Italic-webfont.woff
|
115
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Light-webfont.eot
|
116
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Light-webfont.svg
|
117
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Light-webfont.woff
|
118
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-LightItalic-webfont.eot
|
119
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-LightItalic-webfont.svg
|
120
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-LightItalic-webfont.woff
|
121
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Regular-webfont.eot
|
122
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Regular-webfont.svg
|
123
|
-
- vendor/documentation/javascript/v1/fonts/OpenSans-Regular-webfont.woff
|
106
|
+
- vendor/documentation/javascript/v1/campaign.js.html
|
124
107
|
- vendor/documentation/javascript/v1/global.html
|
125
108
|
- vendor/documentation/javascript/v1/index.html
|
109
|
+
- vendor/documentation/javascript/v1/number.js.html
|
126
110
|
- vendor/documentation/javascript/v1/retreaver.js.html
|
127
|
-
- vendor/documentation/javascript/v1/retreaver_campaign.js.html
|
128
|
-
- vendor/documentation/javascript/v1/retreaver_number.js.html
|
129
111
|
- vendor/documentation/javascript/v1/scripts/linenumber.js
|
130
112
|
- vendor/documentation/javascript/v1/scripts/prettify/Apache-License-2.0.txt
|
131
113
|
- vendor/documentation/javascript/v1/scripts/prettify/lang-css.js
|
@@ -152,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
134
|
- !ruby/object:Gem::Version
|
153
135
|
version: '0'
|
154
136
|
requirements: []
|
155
|
-
rubygems_version: 3.
|
137
|
+
rubygems_version: 3.3.7
|
156
138
|
signing_key:
|
157
139
|
specification_version: 4
|
158
140
|
summary: retreaver.js rails wrapper
|
Binary file
|