dirtravel 0.0.6 → 0.0.7

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/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
- body.frames { padding: 0 5px; }
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 { font-family: monospace; }
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
- -moz-border-radius: 3px; -webkit-border-radius: 3px;
52
- background: #e3e4e3; border: 1px solid #d5d5d5; padding: 7px 10px;
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: 1px 5px; font-size: 0.9em; font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif; display: inline; }
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
- #filecontents dl.box, dl.box {
196
+ .box_info dl {
197
+ margin: 0;
87
198
  border: 0;
88
- width: 520px;
199
+ width: 100%;
89
200
  font-size: 1em;
201
+ display: flex;
202
+ display: -webkit-flex;
203
+ display: -ms-flexbox;
90
204
  }
91
- #filecontents dl.box dt, dl.box dt {
92
- float: left;
93
- display: block;
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
- #filecontents dl.box dd, dl.box dd {
105
- float: left;
106
- display: block;
107
- width: 380px;
108
- margin: 0;
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
- #filecontents dl.box .last, dl.box .last {
229
+ .box_info dl:last-child > * {
115
230
  border-bottom: 1px solid #aaa;
116
231
  }
117
- #filecontents dl.box .r1, dl.box .r1 { background: #eee; }
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
- dl.constants { margin-left: 40px; }
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 { margin-left: 32px; display: block; font-family: sans-serif; }
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 #aaa; margin-top: 15px; padding-top: 0; }
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: 18px;
140
- background: #e5e8ff; border: 1px solid #d8d8e5; -moz-border-radius: 3px; -webkit-border-radius: 3px;
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: 1em; margin-bottom: 0; font-weight: bold; }
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; margin-left: 15px; font-weight: bold; font-size: 0.9em; }
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: #e5e8ff; border: 1px solid #d8d8e5; -moz-border-radius: 3px; -webkit-border-radius: 3px;
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:link, .showSource a:visited { text-decoration: none; color: #666; }
315
+ .showSource a, .showSource a:visited { text-decoration: none; color: #666; }
179
316
 
180
- #content a:link, #content a:visited { text-decoration: none; color: #05a; }
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:link, ul.summary a:visited {
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
- .summary .summary_signature {
195
- padding: 1px 10px;
196
- background: #eaeaff; border: 1px solid #dfdfe5;
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:link,
336
+ #content .summary_signature:hover a,
203
337
  #content .summary_signature:hover a:visited {
204
338
  background: transparent;
205
- color: #48f;
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: 14px; top: 0px; }
225
- #search a:link, #search a:visited {
226
- display: block; float: left; margin-right: 4px;
227
- padding: 8px 10px; text-decoration: none; color: #05a;
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
- -moz-border-radius-bottomleft: 3px; -moz-border-radius-bottomright: 3px;
230
- -webkit-border-bottom-left-radius: 3px; -webkit-border-bottom-right-radius: 3px;
231
- background: #eaf0ff;
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; border: 1px solid #457;
237
- -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
238
- -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
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; top: -5px; position: relative; }
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:link, #menu a:visited { color: #333; text-decoration: none; border-bottom: 1px dotted #bbd; }
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:link, #footer a:visited { color: #444; text-decoration: none; border-bottom: 1px dotted #bbd; }
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,47 +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
- #search_frame {
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
- padding: 20px; padding-right: 30px; border: 1px solid #ddd; float: right; background: #fff; margin-left: 20px; margin-bottom: 20px;
289
- max-width: 300px;
290
- -webkit-box-shadow: -2px 2px 6px #bbb;
291
- -moz-box-shadow: -2px 2px 6px #bbb;
292
- z-index: 5000;
293
409
  position: relative;
410
+ float: right;
294
411
  overflow-x: auto;
412
+ right: -3px;
413
+ margin-left: 20px;
414
+ margin-bottom: 20px;
415
+ padding: 20px; padding-right: 30px;
416
+ max-width: 300px;
417
+ z-index: 5000;
418
+ background: #fefefe;
419
+ border: 1px solid #ddd;
420
+ box-shadow: -2px 2px 6px #bbb;
295
421
  }
296
- #toc.nofloat { float: none; max-width: none; border: none; padding: 0; margin: 20px 0; -webkit-box-shadow: none; -moz-box-shadow: none; }
297
- #toc.nofloat.hidden { padding: 0; background: 0; margin-bottom: 5px; }
298
422
  #toc .title { margin: 0; }
299
423
  #toc ol { padding-left: 1.8em; }
300
424
  #toc li { font-size: 1.1em; line-height: 1.7em; }
301
425
  #toc > ol > li { font-size: 1.1em; font-weight: bold; }
302
- #toc ol > ol { font-size: 0.9em; }
303
- #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; }
304
428
  #toc ol + li { margin-top: 0.3em; }
305
- #toc.hidden { padding: 10px; background: #f6f6f6; -webkit-box-shadow: none; -moz-box-shadow: none; }
429
+ #toc.hidden { padding: 10px; background: #fefefe; box-shadow: none; }
430
+ #toc.hidden:hover { background: #fafafa; }
306
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
+ }
307
440
 
308
441
  /* syntax highlighting */
309
442
  .source_code { display: none; padding: 3px 8px; border-left: 8px solid #ddd; margin-top: 5px; }
@@ -311,13 +444,25 @@ li.r2 { background: #fafafa; }
311
444
  #filecontents pre.code, .docstring pre.code { display: block; }
312
445
  .source_code .lines { padding-right: 12px; color: #555; text-align: right; }
313
446
  #filecontents pre.code, .docstring pre.code,
314
- .tags pre.example { padding: 5px 12px; margin-top: 4px; border: 1px solid #eef; background: #f5f5ff; }
315
- pre.code { color: #000; }
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; }
316
458
  pre.code .info.file { color: #555; }
317
459
  pre.code .val { color: #036A07; }
318
460
  pre.code .tstring_content,
319
461
  pre.code .heredoc_beg, pre.code .heredoc_end,
320
- 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,
321
466
  pre.code .tstring, pre.code .dstring { color: #036A07; }
322
467
  pre.code .fid, pre.code .rubyid_new, pre.code .rubyid_to_s,
323
468
  pre.code .rubyid_to_sym, pre.code .rubyid_to_f,
@@ -337,3 +482,16 @@ pre.code .rubyid_backref,
337
482
  pre.code .rubyid_nth_ref { color: #6D79DE; }
338
483
  pre.code .regexp, .dregexp { color: #036A07; }
339
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; }
@@ -1,23 +1,22 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1
+ <!DOCTYPE html>
2
+ <html>
4
3
  <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
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
- &mdash; Documentation by YARD 0.8.7.6
9
+ &mdash; Documentation by YARD 0.9.36
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
18
- hasFrames = window.top.frames.main ? true : false;
17
+ <script type="text/javascript">
18
+ pathId = "CHANGELOG";
19
19
  relpath = '';
20
- framesUrl = "frames.html#!file.CHANGELOG.html";
21
20
  </script>
22
21
 
23
22
 
@@ -28,42 +27,42 @@
28
27
 
29
28
  </head>
30
29
  <body>
31
- <div id="header">
32
- <div id="menu">
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> &raquo;
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
- <div id="search">
44
+ <div id="search">
42
45
 
43
46
  <a class="full_list_link" id="class_list_link"
44
47
  href="class_list.html">
45
- Class List
46
- </a>
47
-
48
- <a class="full_list_link" id="method_list_link"
49
- href="method_list.html">
50
- Method List
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
- <div class="clear"></div>
60
- </div>
57
+ <div class="clear"></div>
58
+ </div>
61
59
 
62
- <iframe id="search_frame"></iframe>
63
-
64
- <div id="content"><div id='filecontents'>
60
+ <div id="content"><div id='filecontents'>
65
61
  <h1 id="label-Version+history">Version history</h1>
66
- <dl class="rdoc-list label-list"><dt>0.0.6
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
67
66
  <dd>
68
67
  <p>Test file bugfix. Document improvements.</p>
69
68
  </dd><dt>0.0.5
@@ -74,8 +73,7 @@
74
73
  <p>Fix for relative path conversion in Travel.filetree.</p>
75
74
  </dd><dt>0.0.3
76
75
  <dd>
77
- <p>Entry#tip, Entry#relative?, Entry#rename methods added. New option for
78
- Travel.filetree, :inclusive. It uses one-up directory as root.</p>
76
+ <p>Entry#tip, Entry#relative?, Entry#rename methods added. New option for Travel.filetree, :inclusive. It uses one-up directory as root.</p>
79
77
  </dd><dt>0.0.2
80
78
  <dd>
81
79
  <p>Comment typo.</p>
@@ -85,11 +83,12 @@ Travel.filetree, :inclusive. It uses one-up directory as root.</p>
85
83
  </dd></dl>
86
84
  </div></div>
87
85
 
88
- <div id="footer">
89
- Generated on Sun Apr 19 15:01:49 2015 by
90
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
91
- 0.8.7.6 (ruby-2.1.2).
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).
92
90
  </div>
93
91
 
92
+ </div>
94
93
  </body>
95
94
  </html>