dirtravel 0.0.5 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.rdoc +5 -0
- data/README.rdoc +2 -2
- data/doc/DirTravel/DirEntry.html +61 -60
- data/doc/DirTravel/DirTravelError.html +59 -47
- data/doc/DirTravel/Entry.html +164 -163
- data/doc/DirTravel/FileEntry.html +94 -73
- data/doc/DirTravel/Travel.html +291 -172
- data/doc/DirTravel.html +141 -58
- data/doc/_index.html +32 -35
- data/doc/class_list.html +27 -29
- data/doc/css/full_list.css +32 -31
- data/doc/css/style.css +254 -95
- data/doc/file.CHANGELOG.html +45 -43
- data/doc/file.README.html +37 -41
- data/doc/file_list.html +32 -29
- data/doc/frames.html +15 -21
- data/doc/index.html +37 -41
- data/doc/js/app.js +172 -72
- data/doc/js/full_list.js +168 -130
- data/doc/method_list.html +154 -99
- data/doc/top-level-namespace.html +38 -40
- data/lib/dirtravel.rb +98 -39
- data/lib/version.rb +6 -0
- data/test/test_dirtravel.rb +5 -5
- metadata +34 -39
- data/Rakefile +0 -28
data/doc/css/style.css
CHANGED
@@ -1,9 +1,88 @@
|
|
1
|
+
html {
|
2
|
+
width: 100%;
|
3
|
+
height: 100%;
|
4
|
+
}
|
1
5
|
body {
|
2
|
-
padding: 0 20px;
|
3
6
|
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
4
7
|
font-size: 13px;
|
8
|
+
width: 100%;
|
9
|
+
margin: 0;
|
10
|
+
padding: 0;
|
11
|
+
display: flex;
|
12
|
+
display: -webkit-flex;
|
13
|
+
display: -ms-flexbox;
|
14
|
+
}
|
15
|
+
|
16
|
+
#nav {
|
17
|
+
position: relative;
|
18
|
+
width: 100%;
|
19
|
+
height: 100%;
|
20
|
+
border: 0;
|
21
|
+
border-right: 1px dotted #eee;
|
22
|
+
overflow: auto;
|
5
23
|
}
|
6
|
-
|
24
|
+
.nav_wrap {
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
width: 20%;
|
28
|
+
height: 100%;
|
29
|
+
position: relative;
|
30
|
+
display: flex;
|
31
|
+
display: -webkit-flex;
|
32
|
+
display: -ms-flexbox;
|
33
|
+
flex-shrink: 0;
|
34
|
+
-webkit-flex-shrink: 0;
|
35
|
+
-ms-flex: 1 0;
|
36
|
+
}
|
37
|
+
#resizer {
|
38
|
+
position: absolute;
|
39
|
+
right: -5px;
|
40
|
+
top: 0;
|
41
|
+
width: 10px;
|
42
|
+
height: 100%;
|
43
|
+
cursor: col-resize;
|
44
|
+
z-index: 9999;
|
45
|
+
}
|
46
|
+
#main {
|
47
|
+
flex: 5 1;
|
48
|
+
-webkit-flex: 5 1;
|
49
|
+
-ms-flex: 5 1;
|
50
|
+
outline: none;
|
51
|
+
position: relative;
|
52
|
+
background: #fff;
|
53
|
+
padding: 1.2em;
|
54
|
+
padding-top: 0.2em;
|
55
|
+
box-sizing: border-box;
|
56
|
+
}
|
57
|
+
|
58
|
+
@media (max-width: 920px) {
|
59
|
+
.nav_wrap { width: 100%; top: 0; right: 0; overflow: visible; position: absolute; }
|
60
|
+
#resizer { display: none; }
|
61
|
+
#nav {
|
62
|
+
z-index: 9999;
|
63
|
+
background: #fff;
|
64
|
+
display: none;
|
65
|
+
position: absolute;
|
66
|
+
top: 40px;
|
67
|
+
right: 12px;
|
68
|
+
width: 500px;
|
69
|
+
max-width: 80%;
|
70
|
+
height: 80%;
|
71
|
+
overflow-y: scroll;
|
72
|
+
border: 1px solid #999;
|
73
|
+
border-collapse: collapse;
|
74
|
+
box-shadow: -7px 5px 25px #aaa;
|
75
|
+
border-radius: 2px;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
@media (min-width: 920px) {
|
80
|
+
body { height: 100%; overflow: hidden; }
|
81
|
+
#main { height: 100%; overflow: auto; }
|
82
|
+
#search { display: none; }
|
83
|
+
}
|
84
|
+
|
85
|
+
#main img { max-width: 100%; }
|
7
86
|
h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; }
|
8
87
|
h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; }
|
9
88
|
h1.title { margin-bottom: 10px; }
|
@@ -14,18 +93,41 @@ h2 {
|
|
14
93
|
border-bottom: 1px #aaa solid;
|
15
94
|
font-size: 1.4em;
|
16
95
|
margin: 1.8em 0 0.5em;
|
96
|
+
position: relative;
|
97
|
+
}
|
98
|
+
h2 small { font-weight: normal; font-size: 0.7em; display: inline; position: absolute; right: 0; }
|
99
|
+
h2 small a {
|
100
|
+
display: block;
|
101
|
+
height: 20px;
|
102
|
+
border: 1px solid #aaa;
|
103
|
+
border-bottom: 0;
|
104
|
+
border-top-left-radius: 5px;
|
105
|
+
background: #f8f8f8;
|
106
|
+
position: relative;
|
107
|
+
padding: 2px 7px;
|
17
108
|
}
|
18
|
-
h2 small { font-weight: normal; font-size: 0.7em; display: block; float: right; }
|
19
109
|
.clear { clear: both; }
|
20
110
|
.inline { display: inline; }
|
21
111
|
.inline p:first-child { display: inline; }
|
112
|
+
.docstring, .tags, #filecontents { font-size: 15px; line-height: 1.5145em; }
|
113
|
+
.docstring p > code, .docstring p > tt, .tags p > code, .tags p > tt {
|
114
|
+
color: #c7254e; background: #f9f2f4; padding: 2px 4px; font-size: 1em;
|
115
|
+
border-radius: 4px;
|
116
|
+
}
|
22
117
|
.docstring h1, .docstring h2, .docstring h3, .docstring h4 { padding: 0; border: 0; border-bottom: 1px dotted #bbb; }
|
23
118
|
.docstring h1 { font-size: 1.2em; }
|
24
119
|
.docstring h2 { font-size: 1.1em; }
|
25
120
|
.docstring h3, .docstring h4 { font-size: 1em; border-bottom: 0; padding-top: 10px; }
|
26
|
-
.summary_desc .object_link, .docstring .object_link {
|
121
|
+
.summary_desc .object_link a, .docstring .object_link a {
|
122
|
+
font-family: monospace; font-size: 1.05em;
|
123
|
+
color: #05a; background: #EDF4FA; padding: 2px 4px; font-size: 1em;
|
124
|
+
border-radius: 4px;
|
125
|
+
}
|
27
126
|
.rdoc-term { padding-right: 25px; font-weight: bold; }
|
28
127
|
.rdoc-list p { margin: 0; padding: 0; margin-bottom: 4px; }
|
128
|
+
.summary_desc pre.code .object_link a, .docstring pre.code .object_link a {
|
129
|
+
padding: 0px; background: inherit; color: inherit; border-radius: inherit;
|
130
|
+
}
|
29
131
|
|
30
132
|
/* style for <table> */
|
31
133
|
#filecontents table, .docstring table { border-collapse: collapse; }
|
@@ -48,17 +150,25 @@ h2 small { font-weight: normal; font-size: 0.7em; display: block; float: right;
|
|
48
150
|
|
49
151
|
.note {
|
50
152
|
color: #222;
|
51
|
-
|
52
|
-
|
153
|
+
margin: 20px 0;
|
154
|
+
padding: 10px;
|
155
|
+
border: 1px solid #eee;
|
156
|
+
border-radius: 3px;
|
53
157
|
display: block;
|
54
158
|
}
|
159
|
+
.docstring .note {
|
160
|
+
border-left-color: #ccc;
|
161
|
+
border-left-width: 5px;
|
162
|
+
}
|
55
163
|
.note.todo { background: #ffffc5; border-color: #ececaa; }
|
56
164
|
.note.returns_void { background: #efefef; }
|
57
165
|
.note.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
166
|
+
.note.title.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
58
167
|
.note.private { background: #ffffc5; border-color: #ececaa; }
|
59
|
-
.note.title { padding:
|
168
|
+
.note.title { padding: 3px 6px; font-size: 0.9em; font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif; display: inline; }
|
60
169
|
.summary_signature + .note.title { margin-left: 7px; }
|
61
170
|
h1 .note.title { font-size: 0.5em; font-weight: normal; padding: 3px 5px; position: relative; top: -3px; text-transform: capitalize; }
|
171
|
+
.note.title { background: #efefef; }
|
62
172
|
.note.title.constructor { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
63
173
|
.note.title.writeonly { color: #fff; background: #45a638; border-color: #2da31d; }
|
64
174
|
.note.title.readonly { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
@@ -83,48 +193,72 @@ p.inherited {
|
|
83
193
|
margin-left: 25px;
|
84
194
|
}
|
85
195
|
|
86
|
-
|
196
|
+
.box_info dl {
|
197
|
+
margin: 0;
|
87
198
|
border: 0;
|
88
|
-
width:
|
199
|
+
width: 100%;
|
89
200
|
font-size: 1em;
|
201
|
+
display: flex;
|
202
|
+
display: -webkit-flex;
|
203
|
+
display: -ms-flexbox;
|
90
204
|
}
|
91
|
-
|
92
|
-
|
93
|
-
|
205
|
+
.box_info dl dt {
|
206
|
+
flex-shrink: 0;
|
207
|
+
-webkit-flex-shrink: 1;
|
208
|
+
-ms-flex-shrink: 1;
|
94
209
|
width: 100px;
|
95
|
-
margin: 0;
|
96
210
|
text-align: right;
|
97
211
|
font-weight: bold;
|
98
|
-
background: transparent;
|
99
212
|
border: 1px solid #aaa;
|
100
213
|
border-width: 1px 0px 0px 1px;
|
101
214
|
padding: 6px 0;
|
102
215
|
padding-right: 10px;
|
103
216
|
}
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
217
|
+
.box_info dl dd {
|
218
|
+
flex-grow: 1;
|
219
|
+
-webkit-flex-grow: 1;
|
220
|
+
-ms-flex: 1;
|
221
|
+
max-width: 420px;
|
109
222
|
padding: 6px 0;
|
110
223
|
padding-right: 20px;
|
111
224
|
border: 1px solid #aaa;
|
112
225
|
border-width: 1px 1px 0 0;
|
226
|
+
overflow: hidden;
|
227
|
+
position: relative;
|
113
228
|
}
|
114
|
-
|
229
|
+
.box_info dl:last-child > * {
|
115
230
|
border-bottom: 1px solid #aaa;
|
116
231
|
}
|
117
|
-
|
232
|
+
.box_info dl:nth-child(odd) > * { background: #eee; }
|
233
|
+
.box_info dl:nth-child(even) > * { background: #fff; }
|
234
|
+
.box_info dl > * { margin: 0; }
|
118
235
|
|
119
236
|
ul.toplevel { list-style: none; padding-left: 0; font-size: 1.1em; }
|
120
237
|
.index_inline_list { padding-left: 0; font-size: 1.1em; }
|
121
|
-
.index_inline_list li { list-style: none; display: inline; padding: 7px 12px; line-height: 35px; }
|
122
238
|
|
123
|
-
|
239
|
+
.index_inline_list li {
|
240
|
+
list-style: none;
|
241
|
+
display: inline-block;
|
242
|
+
padding: 0 12px;
|
243
|
+
line-height: 30px;
|
244
|
+
margin-bottom: 5px;
|
245
|
+
}
|
246
|
+
|
247
|
+
dl.constants { margin-left: 10px; }
|
124
248
|
dl.constants dt { font-weight: bold; font-size: 1.1em; margin-bottom: 5px; }
|
249
|
+
dl.constants.compact dt { display: inline-block; font-weight: normal }
|
125
250
|
dl.constants dd { width: 75%; white-space: pre; font-family: monospace; margin-bottom: 18px; }
|
251
|
+
dl.constants .docstring .note:first-child { margin-top: 5px; }
|
126
252
|
|
127
|
-
.summary_desc {
|
253
|
+
.summary_desc {
|
254
|
+
margin-left: 32px;
|
255
|
+
display: block;
|
256
|
+
font-family: sans-serif;
|
257
|
+
font-size: 1.1em;
|
258
|
+
margin-top: 8px;
|
259
|
+
line-height: 1.5145em;
|
260
|
+
margin-bottom: 0.8em;
|
261
|
+
}
|
128
262
|
.summary_desc tt { font-size: 0.9em; }
|
129
263
|
dl.constants .note { padding: 2px 6px; padding-right: 12px; margin-top: 6px; }
|
130
264
|
dl.constants .docstring { margin-left: 32px; font-size: 0.9em; font-weight: normal; }
|
@@ -132,12 +266,13 @@ dl.constants .tags { padding-left: 32px; font-size: 0.9em; line-height: 0.8em; }
|
|
132
266
|
dl.constants .discussion *:first-child { margin-top: 0; }
|
133
267
|
dl.constants .discussion *:last-child { margin-bottom: 0; }
|
134
268
|
|
135
|
-
.method_details { border-top: 1px dotted #
|
136
|
-
.method_details.first { border: 0; }
|
269
|
+
.method_details { border-top: 1px dotted #ccc; margin-top: 25px; padding-top: 0; }
|
270
|
+
.method_details.first { border: 0; margin-top: 5px; }
|
271
|
+
.method_details.first h3.signature { margin-top: 1em; }
|
137
272
|
p.signature, h3.signature {
|
138
273
|
font-size: 1.1em; font-weight: normal; font-family: Monaco, Consolas, Courier, monospace;
|
139
|
-
padding: 6px 10px; margin-top:
|
140
|
-
background: #
|
274
|
+
padding: 6px 10px; margin-top: 1em;
|
275
|
+
background: #E8F4FF; border: 1px solid #d8d8e5; border-radius: 5px;
|
141
276
|
}
|
142
277
|
p.signature tt,
|
143
278
|
h3.signature tt { font-family: Monaco, Consolas, Courier, monospace; }
|
@@ -152,7 +287,8 @@ h3.signature .aliases { display: block; font-weight: normal; font-size: 0.9em; f
|
|
152
287
|
p.signature .aliases .names,
|
153
288
|
h3.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace; font-weight: bold; color: #000; font-size: 1.2em; }
|
154
289
|
|
155
|
-
.tags .tag_title { font-size:
|
290
|
+
.tags .tag_title { font-size: 1.05em; margin-bottom: 0; font-weight: bold; }
|
291
|
+
.tags .tag_title tt { color: initial; padding: initial; background: initial; }
|
156
292
|
.tags ul { margin-top: 5px; padding-left: 30px; list-style: square; }
|
157
293
|
.tags ul li { margin-bottom: 3px; }
|
158
294
|
.tags ul .name { font-family: monospace; font-weight: bold; }
|
@@ -160,12 +296,13 @@ h3.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace
|
|
160
296
|
.tags { margin-bottom: 12px; }
|
161
297
|
|
162
298
|
.tags .examples .tag_title { margin-bottom: 10px; font-weight: bold; }
|
163
|
-
.tags .examples .inline p { padding: 0; margin: 0;
|
299
|
+
.tags .examples .inline p { padding: 0; margin: 0; font-weight: bold; font-size: 1em; }
|
300
|
+
.tags .examples .inline p:before { content: "▸"; font-size: 1em; margin-right: 5px; }
|
164
301
|
|
165
302
|
.tags .overload .overload_item { list-style: none; margin-bottom: 25px; }
|
166
303
|
.tags .overload .overload_item .signature {
|
167
304
|
padding: 2px 8px;
|
168
|
-
background: #
|
305
|
+
background: #F1F8FF; border: 1px solid #d8d8e5; border-radius: 3px;
|
169
306
|
}
|
170
307
|
.tags .overload .signature { margin-left: -15px; font-family: monospace; display: block; font-size: 1.1em; }
|
171
308
|
.tags .overload .docstring { margin-top: 15px; }
|
@@ -175,34 +312,31 @@ h3.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace
|
|
175
312
|
#method_missing_details .notice.this { position: relative; top: -8px; color: #888; padding: 0; margin: 0; }
|
176
313
|
|
177
314
|
.showSource { font-size: 0.9em; }
|
178
|
-
.showSource a
|
315
|
+
.showSource a, .showSource a:visited { text-decoration: none; color: #666; }
|
179
316
|
|
180
|
-
#content a
|
317
|
+
#content a, #content a:visited { text-decoration: none; color: #05a; }
|
181
318
|
#content a:hover { background: #ffffa5; }
|
182
|
-
div.docstring, p.docstring { margin-right: 6em; }
|
183
319
|
|
184
320
|
ul.summary {
|
185
321
|
list-style: none;
|
186
322
|
font-family: monospace;
|
187
323
|
font-size: 1em;
|
188
324
|
line-height: 1.5em;
|
325
|
+
padding-left: 0px;
|
189
326
|
}
|
190
|
-
ul.summary a
|
327
|
+
ul.summary a, ul.summary a:visited {
|
191
328
|
text-decoration: none; font-size: 1.1em;
|
192
329
|
}
|
193
330
|
ul.summary li { margin-bottom: 5px; }
|
194
|
-
.
|
195
|
-
|
196
|
-
|
197
|
-
-moz-border-radius: 3px; -webkit-border-radius: 3px;
|
198
|
-
}
|
199
|
-
.summary_signature:hover { background: #eeeeff; cursor: pointer; }
|
331
|
+
.summary_signature { padding: 4px 8px; background: #f8f8f8; border: 1px solid #f0f0f0; border-radius: 5px; }
|
332
|
+
.summary_signature:hover { background: #CFEBFF; border-color: #A4CCDA; cursor: pointer; }
|
333
|
+
.summary_signature.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
200
334
|
ul.summary.compact li { display: inline-block; margin: 0px 5px 0px 0px; line-height: 2.6em;}
|
201
335
|
ul.summary.compact .summary_signature { padding: 5px 7px; padding-right: 4px; }
|
202
|
-
#content .summary_signature:hover a
|
336
|
+
#content .summary_signature:hover a,
|
203
337
|
#content .summary_signature:hover a:visited {
|
204
338
|
background: transparent;
|
205
|
-
color: #
|
339
|
+
color: #049;
|
206
340
|
}
|
207
341
|
|
208
342
|
p.inherited a { font-family: monospace; font-size: 0.9em; }
|
@@ -221,37 +355,42 @@ ul.fullTree li:last-child { padding-bottom: 0; }
|
|
221
355
|
.showAll ul.fullTree { display: block; }
|
222
356
|
.showAll .inheritName { display: none; }
|
223
357
|
|
224
|
-
#search { position: absolute; right:
|
225
|
-
#search a
|
226
|
-
display: block; float: left;
|
227
|
-
padding: 8px
|
358
|
+
#search { position: absolute; right: 12px; top: 0px; z-index: 9000; }
|
359
|
+
#search a {
|
360
|
+
display: block; float: left;
|
361
|
+
padding: 4px 8px; text-decoration: none; color: #05a; fill: #05a;
|
228
362
|
border: 1px solid #d8d8e5;
|
229
|
-
-
|
230
|
-
|
231
|
-
|
232
|
-
-webkit-box-shadow: -1px 1px 3px #ddd;
|
363
|
+
border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;
|
364
|
+
background: #F1F8FF;
|
365
|
+
box-shadow: -1px 1px 3px #ddd;
|
233
366
|
}
|
234
|
-
#search a:hover { background: #f5faff; color: #06b; }
|
367
|
+
#search a:hover { background: #f5faff; color: #06b; fill: #06b; }
|
235
368
|
#search a.active {
|
236
|
-
background: #568; padding-bottom: 20px; color: #fff;
|
237
|
-
|
238
|
-
|
369
|
+
background: #568; padding-bottom: 20px; color: #fff; fill: #fff;
|
370
|
+
border: 1px solid #457;
|
371
|
+
border-top-left-radius: 5px; border-top-right-radius: 5px;
|
372
|
+
}
|
373
|
+
#search a.inactive { color: #999; fill: #999; }
|
374
|
+
.inheritanceTree, .toggleDefines {
|
375
|
+
float: right;
|
376
|
+
border-left: 1px solid #aaa;
|
377
|
+
position: absolute; top: 0; right: 0;
|
378
|
+
height: 100%;
|
379
|
+
background: #f6f6f6;
|
380
|
+
padding: 5px;
|
381
|
+
min-width: 55px;
|
382
|
+
text-align: center;
|
239
383
|
}
|
240
|
-
#search a.inactive { color: #999; }
|
241
|
-
.frames #search { display: none; }
|
242
|
-
.inheritanceTree, .toggleDefines { float: right; }
|
243
384
|
|
244
|
-
#menu { font-size: 1.3em; color: #bbb;
|
385
|
+
#menu { font-size: 1.3em; color: #bbb; }
|
245
386
|
#menu .title, #menu a { font-size: 0.7em; }
|
246
387
|
#menu .title a { font-size: 1em; }
|
247
388
|
#menu .title { color: #555; }
|
248
|
-
#menu a
|
389
|
+
#menu a, #menu a:visited { color: #333; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
249
390
|
#menu a:hover { color: #05a; }
|
250
|
-
#menu .noframes { display: inline; }
|
251
|
-
.frames #menu .noframes { display: inline; float: right; }
|
252
391
|
|
253
392
|
#footer { margin-top: 15px; border-top: 1px solid #ccc; text-align: center; padding: 7px 0; color: #999; }
|
254
|
-
#footer a
|
393
|
+
#footer a, #footer a:visited { color: #444; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
255
394
|
#footer a:hover { color: #05a; }
|
256
395
|
|
257
396
|
#listing ul.alpha { font-size: 1.1em; }
|
@@ -263,46 +402,41 @@ ul.fullTree li:last-child { padding-bottom: 0; }
|
|
263
402
|
li.r1 { background: #f0f0f0; }
|
264
403
|
li.r2 { background: #fafafa; }
|
265
404
|
|
266
|
-
#
|
267
|
-
z-index: 9999;
|
268
|
-
background: #fff;
|
269
|
-
display: none;
|
270
|
-
position: absolute;
|
271
|
-
top: 36px;
|
272
|
-
right: 18px;
|
273
|
-
width: 500px;
|
274
|
-
height: 80%;
|
275
|
-
overflow-y: scroll;
|
276
|
-
border: 1px solid #999;
|
277
|
-
border-collapse: collapse;
|
278
|
-
-webkit-box-shadow: -7px 5px 25px #aaa;
|
279
|
-
-moz-box-shadow: -7px 5px 25px #aaa;
|
280
|
-
-moz-border-radius: 2px;
|
281
|
-
-webkit-border-radius: 2px;
|
282
|
-
}
|
283
|
-
|
284
|
-
#content ul.summary li.deprecated .summary_signature a:link,
|
405
|
+
#content ul.summary li.deprecated .summary_signature a,
|
285
406
|
#content ul.summary li.deprecated .summary_signature a:visited { text-decoration: line-through; font-style: italic; }
|
286
407
|
|
287
408
|
#toc {
|
288
|
-
|
409
|
+
position: relative;
|
410
|
+
float: right;
|
411
|
+
overflow-x: auto;
|
412
|
+
right: -3px;
|
413
|
+
margin-left: 20px;
|
414
|
+
margin-bottom: 20px;
|
415
|
+
padding: 20px; padding-right: 30px;
|
289
416
|
max-width: 300px;
|
290
|
-
-webkit-box-shadow: -2px 2px 6px #bbb;
|
291
|
-
-moz-box-shadow: -2px 2px 6px #bbb;
|
292
417
|
z-index: 5000;
|
293
|
-
|
418
|
+
background: #fefefe;
|
419
|
+
border: 1px solid #ddd;
|
420
|
+
box-shadow: -2px 2px 6px #bbb;
|
294
421
|
}
|
295
|
-
#toc.nofloat { float: none; max-width: none; border: none; padding: 0; margin: 20px 0; -webkit-box-shadow: none; -moz-box-shadow: none; }
|
296
|
-
#toc.nofloat.hidden { padding: 0; background: 0; margin-bottom: 5px; }
|
297
422
|
#toc .title { margin: 0; }
|
298
423
|
#toc ol { padding-left: 1.8em; }
|
299
424
|
#toc li { font-size: 1.1em; line-height: 1.7em; }
|
300
425
|
#toc > ol > li { font-size: 1.1em; font-weight: bold; }
|
301
|
-
#toc ol > ol { font-size: 0.9em; }
|
302
|
-
#toc ol ol > ol { padding-left: 2.3em; }
|
426
|
+
#toc ol > li > ol { font-size: 0.9em; }
|
427
|
+
#toc ol ol > li > ol { padding-left: 2.3em; }
|
303
428
|
#toc ol + li { margin-top: 0.3em; }
|
304
|
-
#toc.hidden { padding: 10px; background: #
|
429
|
+
#toc.hidden { padding: 10px; background: #fefefe; box-shadow: none; }
|
430
|
+
#toc.hidden:hover { background: #fafafa; }
|
305
431
|
#filecontents h1 + #toc.nofloat { margin-top: 0; }
|
432
|
+
@media (max-width: 560px) {
|
433
|
+
#toc {
|
434
|
+
margin-left: 0;
|
435
|
+
margin-top: 16px;
|
436
|
+
float: none;
|
437
|
+
max-width: none;
|
438
|
+
}
|
439
|
+
}
|
306
440
|
|
307
441
|
/* syntax highlighting */
|
308
442
|
.source_code { display: none; padding: 3px 8px; border-left: 8px solid #ddd; margin-top: 5px; }
|
@@ -310,13 +444,25 @@ li.r2 { background: #fafafa; }
|
|
310
444
|
#filecontents pre.code, .docstring pre.code { display: block; }
|
311
445
|
.source_code .lines { padding-right: 12px; color: #555; text-align: right; }
|
312
446
|
#filecontents pre.code, .docstring pre.code,
|
313
|
-
.tags pre.example {
|
314
|
-
|
447
|
+
.tags pre.example {
|
448
|
+
padding: 9px 14px;
|
449
|
+
margin-top: 4px;
|
450
|
+
border: 1px solid #e1e1e8;
|
451
|
+
background: #f7f7f9;
|
452
|
+
border-radius: 4px;
|
453
|
+
font-size: 1em;
|
454
|
+
overflow-x: auto;
|
455
|
+
line-height: 1.2em;
|
456
|
+
}
|
457
|
+
pre.code { color: #000; tab-size: 2; }
|
315
458
|
pre.code .info.file { color: #555; }
|
316
459
|
pre.code .val { color: #036A07; }
|
317
460
|
pre.code .tstring_content,
|
318
461
|
pre.code .heredoc_beg, pre.code .heredoc_end,
|
319
|
-
pre.code .qwords_beg, pre.code .qwords_end,
|
462
|
+
pre.code .qwords_beg, pre.code .qwords_end, pre.code .qwords_sep,
|
463
|
+
pre.code .words_beg, pre.code .words_end, pre.code .words_sep,
|
464
|
+
pre.code .qsymbols_beg, pre.code .qsymbols_end, pre.code .qsymbols_sep,
|
465
|
+
pre.code .symbols_beg, pre.code .symbols_end, pre.code .symbols_sep,
|
320
466
|
pre.code .tstring, pre.code .dstring { color: #036A07; }
|
321
467
|
pre.code .fid, pre.code .rubyid_new, pre.code .rubyid_to_s,
|
322
468
|
pre.code .rubyid_to_sym, pre.code .rubyid_to_f,
|
@@ -324,9 +470,9 @@ pre.code .dot + pre.code .id,
|
|
324
470
|
pre.code .rubyid_to_i pre.code .rubyid_each { color: #0085FF; }
|
325
471
|
pre.code .comment { color: #0066FF; }
|
326
472
|
pre.code .const, pre.code .constant { color: #585CF6; }
|
473
|
+
pre.code .label,
|
327
474
|
pre.code .symbol { color: #C5060B; }
|
328
475
|
pre.code .kw,
|
329
|
-
pre.code .label,
|
330
476
|
pre.code .rubyid_require,
|
331
477
|
pre.code .rubyid_extend,
|
332
478
|
pre.code .rubyid_include { color: #0000FF; }
|
@@ -336,3 +482,16 @@ pre.code .rubyid_backref,
|
|
336
482
|
pre.code .rubyid_nth_ref { color: #6D79DE; }
|
337
483
|
pre.code .regexp, .dregexp { color: #036A07; }
|
338
484
|
pre.code a { border-bottom: 1px dotted #bbf; }
|
485
|
+
/* inline code */
|
486
|
+
*:not(pre) > code {
|
487
|
+
padding: 1px 3px 1px 3px;
|
488
|
+
border: 1px solid #E1E1E8;
|
489
|
+
background: #F7F7F9;
|
490
|
+
border-radius: 4px;
|
491
|
+
}
|
492
|
+
|
493
|
+
/* Color fix for links */
|
494
|
+
#content .summary_desc pre.code .id > .object_link a, /* identifier */
|
495
|
+
#content .docstring pre.code .id > .object_link a { color: #0085FF; }
|
496
|
+
#content .summary_desc pre.code .const > .object_link a, /* constant */
|
497
|
+
#content .docstring pre.code .const > .object_link a { color: #585CF6; }
|
data/doc/file.CHANGELOG.html
CHANGED
@@ -1,23 +1,22 @@
|
|
1
|
-
<!DOCTYPE html
|
2
|
-
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
4
3
|
<head>
|
5
|
-
<meta
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
6
|
<title>
|
7
7
|
File: CHANGELOG
|
8
8
|
|
9
|
-
— Documentation by YARD 0.
|
9
|
+
— Documentation by YARD 0.9.36
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
13
|
-
<link rel="stylesheet" href="css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
18
|
-
|
17
|
+
<script type="text/javascript">
|
18
|
+
pathId = "CHANGELOG";
|
19
19
|
relpath = '';
|
20
|
-
framesUrl = "frames.html#!" + escape(window.location.href);
|
21
20
|
</script>
|
22
21
|
|
23
22
|
|
@@ -28,65 +27,68 @@
|
|
28
27
|
|
29
28
|
</head>
|
30
29
|
<body>
|
31
|
-
<div
|
32
|
-
<
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="file_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
33
38
|
|
34
39
|
<a href="_index.html">Index</a> »
|
35
40
|
<span class="title">File: CHANGELOG</span>
|
36
41
|
|
37
|
-
|
38
|
-
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
39
42
|
</div>
|
40
43
|
|
41
|
-
|
44
|
+
<div id="search">
|
42
45
|
|
43
46
|
<a class="full_list_link" id="class_list_link"
|
44
47
|
href="class_list.html">
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
</a>
|
52
|
-
|
53
|
-
<a class="full_list_link" id="file_list_link"
|
54
|
-
href="file_list.html">
|
55
|
-
File List
|
48
|
+
|
49
|
+
<svg width="24" height="24">
|
50
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
51
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
52
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
</svg>
|
56
54
|
</a>
|
57
55
|
|
58
56
|
</div>
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
<iframe id="search_frame"></iframe>
|
57
|
+
<div class="clear"></div>
|
58
|
+
</div>
|
63
59
|
|
64
|
-
|
65
|
-
<h1>Version history</h1>
|
66
|
-
<dl class="rdoc-list"><dt>0.0.
|
60
|
+
<div id="content"><div id='filecontents'>
|
61
|
+
<h1 id="label-Version+history">Version history</h1>
|
62
|
+
<dl class="rdoc-list label-list"><dt>0.0.7
|
63
|
+
<dd>
|
64
|
+
<p>Dependency updates only.</p>
|
65
|
+
</dd><dt>0.0.6
|
66
|
+
<dd>
|
67
|
+
<p>Test file bugfix. Document improvements.</p>
|
68
|
+
</dd><dt>0.0.5
|
67
69
|
<dd>
|
68
70
|
<p>Abspath as Travel data member.</p>
|
69
|
-
</dd><dt>0.0.4
|
71
|
+
</dd><dt>0.0.4
|
70
72
|
<dd>
|
71
73
|
<p>Fix for relative path conversion in Travel.filetree.</p>
|
72
|
-
</dd><dt>0.0.3
|
74
|
+
</dd><dt>0.0.3
|
73
75
|
<dd>
|
74
|
-
<p>Entry#tip, Entry#relative?, Entry#rename methods added. New option for
|
75
|
-
|
76
|
-
</dd><dt>0.0.2</dt>
|
76
|
+
<p>Entry#tip, Entry#relative?, Entry#rename methods added. New option for Travel.filetree, :inclusive. It uses one-up directory as root.</p>
|
77
|
+
</dd><dt>0.0.2
|
77
78
|
<dd>
|
78
79
|
<p>Comment typo.</p>
|
79
|
-
</dd><dt>0.0.1
|
80
|
+
</dd><dt>0.0.1
|
80
81
|
<dd>
|
81
82
|
<p>Initial version.</p>
|
82
83
|
</dd></dl>
|
83
84
|
</div></div>
|
84
85
|
|
85
|
-
|
86
|
-
Generated on
|
87
|
-
<a href="
|
88
|
-
0.
|
86
|
+
<div id="footer">
|
87
|
+
Generated on Fri Jun 28 14:38:02 2024 by
|
88
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
89
|
+
0.9.36 (ruby-3.1.2).
|
89
90
|
</div>
|
90
91
|
|
92
|
+
</div>
|
91
93
|
</body>
|
92
94
|
</html>
|