cdss-ruby 0.1.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 +7 -0
- data/.rubocop.yml +86 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/README.md +101 -0
- data/Rakefile +26 -0
- data/docs/Cdss/AdminCalls.html +399 -0
- data/docs/Cdss/Analysis.html +972 -0
- data/docs/Cdss/Client.html +581 -0
- data/docs/Cdss/Climate.html +1257 -0
- data/docs/Cdss/Concerns/LogReadingAttributes.html +406 -0
- data/docs/Cdss/Concerns/WellReadingAttributes.html +414 -0
- data/docs/Cdss/Concerns.html +117 -0
- data/docs/Cdss/GroundWater.html +945 -0
- data/docs/Cdss/Models/AdminCall.html +252 -0
- data/docs/Cdss/Models/Analysis.html +397 -0
- data/docs/Cdss/Models/CallAnalysis.html +140 -0
- data/docs/Cdss/Models/ClimateStation.html +249 -0
- data/docs/Cdss/Models/DiversionRecord.html +248 -0
- data/docs/Cdss/Models/Reading.html +301 -0
- data/docs/Cdss/Models/ReferenceTable.html +339 -0
- data/docs/Cdss/Models/RouteAnalysis.html +140 -0
- data/docs/Cdss/Models/SourceRoute.html +140 -0
- data/docs/Cdss/Models/Station.html +248 -0
- data/docs/Cdss/Models/Structure.html +259 -0
- data/docs/Cdss/Models/WaterClass.html +249 -0
- data/docs/Cdss/Models/WaterRight.html +255 -0
- data/docs/Cdss/Models/Well.html +251 -0
- data/docs/Cdss/Models.html +117 -0
- data/docs/Cdss/Parser.html +2155 -0
- data/docs/Cdss/Parsers/AdminCallsParser.html +201 -0
- data/docs/Cdss/Parsers/AnalysisParser.html +296 -0
- data/docs/Cdss/Parsers/BaseParser.html +207 -0
- data/docs/Cdss/Parsers/ClimateParser.html +253 -0
- data/docs/Cdss/Parsers/ReadingParser.html +201 -0
- data/docs/Cdss/Parsers/ReferenceTablesParser.html +201 -0
- data/docs/Cdss/Parsers/StationParser.html +201 -0
- data/docs/Cdss/Parsers/StructuresParser.html +305 -0
- data/docs/Cdss/Parsers/WaterRightsParser.html +219 -0
- data/docs/Cdss/Parsers/WellParser.html +357 -0
- data/docs/Cdss/Parsers.html +117 -0
- data/docs/Cdss/ReferenceTables.html +332 -0
- data/docs/Cdss/Structures.html +1132 -0
- data/docs/Cdss/SurfaceWater.html +798 -0
- data/docs/Cdss/Telemetry.html +763 -0
- data/docs/Cdss/Utils.html +1276 -0
- data/docs/Cdss/WaterRights.html +634 -0
- data/docs/Cdss.html +292 -0
- data/docs/_index.html +493 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +503 -0
- data/docs/file.README.html +108 -0
- data/docs/file_list.html +59 -0
- data/docs/frames.html +22 -0
- data/docs/index.html +108 -0
- data/docs/js/app.js +344 -0
- data/docs/js/full_list.js +242 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +790 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/cdss/admin_calls.rb +44 -0
- data/lib/cdss/analysis.rb +183 -0
- data/lib/cdss/client.rb +121 -0
- data/lib/cdss/climate.rb +155 -0
- data/lib/cdss/concerns/log_reading_attributes.rb +48 -0
- data/lib/cdss/concerns/well_reading_attributes.rb +56 -0
- data/lib/cdss/ground_water.rb +112 -0
- data/lib/cdss/models/admin_call.rb +45 -0
- data/lib/cdss/models/analysis.rb +77 -0
- data/lib/cdss/models/climate_station.rb +40 -0
- data/lib/cdss/models/reading.rb +54 -0
- data/lib/cdss/models/reference_table.rb +56 -0
- data/lib/cdss/models/station.rb +40 -0
- data/lib/cdss/models/structure.rb +101 -0
- data/lib/cdss/models/water_right.rb +47 -0
- data/lib/cdss/models/well.rb +43 -0
- data/lib/cdss/parser.rb +172 -0
- data/lib/cdss/parsers/admin_calls_parser.rb +47 -0
- data/lib/cdss/parsers/analysis_parser.rb +124 -0
- data/lib/cdss/parsers/base_parser.rb +18 -0
- data/lib/cdss/parsers/climate_parser.rb +86 -0
- data/lib/cdss/parsers/reading_parser.rb +90 -0
- data/lib/cdss/parsers/reference_tables_parser.rb +55 -0
- data/lib/cdss/parsers/station_parser.rb +42 -0
- data/lib/cdss/parsers/structures_parser.rb +96 -0
- data/lib/cdss/parsers/water_rights_parser.rb +77 -0
- data/lib/cdss/parsers/well_parser.rb +107 -0
- data/lib/cdss/reference_tables.rb +147 -0
- data/lib/cdss/structures.rb +235 -0
- data/lib/cdss/surface_water.rb +186 -0
- data/lib/cdss/telemetry.rb +98 -0
- data/lib/cdss/utils.rb +152 -0
- data/lib/cdss/version.rb +5 -0
- data/lib/cdss/water_rights.rb +95 -0
- data/lib/cdss.rb +27 -0
- data/sig/cdss/ruby.rbs +6 -0
- metadata +272 -0
data/docs/css/style.css
ADDED
@@ -0,0 +1,503 @@
|
|
1
|
+
html {
|
2
|
+
width: 100%;
|
3
|
+
height: 100%;
|
4
|
+
}
|
5
|
+
body {
|
6
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
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;
|
23
|
+
}
|
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
|
+
@media (max-width: 320px) {
|
86
|
+
body { height: 100%; overflow: hidden; overflow-wrap: break-word; }
|
87
|
+
#main { height: 100%; overflow: auto; }
|
88
|
+
}
|
89
|
+
|
90
|
+
#main img { max-width: 100%; }
|
91
|
+
h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; }
|
92
|
+
h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; }
|
93
|
+
h1.title { margin-bottom: 10px; }
|
94
|
+
h1.alphaindex { margin-top: 0; font-size: 22px; }
|
95
|
+
h2 {
|
96
|
+
padding: 0;
|
97
|
+
padding-bottom: 3px;
|
98
|
+
border-bottom: 1px #aaa solid;
|
99
|
+
font-size: 1.4em;
|
100
|
+
margin: 1.8em 0 0.5em;
|
101
|
+
position: relative;
|
102
|
+
}
|
103
|
+
h2 small { font-weight: normal; font-size: 0.7em; display: inline; position: absolute; right: 0; }
|
104
|
+
h2 small a {
|
105
|
+
display: block;
|
106
|
+
height: 20px;
|
107
|
+
border: 1px solid #aaa;
|
108
|
+
border-bottom: 0;
|
109
|
+
border-top-left-radius: 5px;
|
110
|
+
background: #f8f8f8;
|
111
|
+
position: relative;
|
112
|
+
padding: 2px 7px;
|
113
|
+
}
|
114
|
+
a { font-weight: 550; }
|
115
|
+
.clear { clear: both; }
|
116
|
+
.inline { display: inline; }
|
117
|
+
.inline p:first-child { display: inline; }
|
118
|
+
.docstring, .tags, #filecontents { font-size: 15px; line-height: 1.5145em; }
|
119
|
+
.docstring p > code, .docstring p > tt, .tags p > code, .tags p > tt {
|
120
|
+
color: #c7254e; background: #f9f2f4; padding: 2px 4px; font-size: 1em;
|
121
|
+
border-radius: 4px;
|
122
|
+
}
|
123
|
+
.docstring h1, .docstring h2, .docstring h3, .docstring h4 { padding: 0; border: 0; border-bottom: 1px dotted #bbb; }
|
124
|
+
.docstring h1 { font-size: 1.2em; }
|
125
|
+
.docstring h2 { font-size: 1.1em; }
|
126
|
+
.docstring h3, .docstring h4 { font-size: 1em; border-bottom: 0; padding-top: 10px; }
|
127
|
+
.summary_desc .object_link a, .docstring .object_link a {
|
128
|
+
font-family: monospace; font-size: 1.05em;
|
129
|
+
color: #05a; background: #EDF4FA; padding: 2px 4px; font-size: 1em;
|
130
|
+
border-radius: 4px;
|
131
|
+
}
|
132
|
+
.rdoc-term { padding-right: 25px; font-weight: bold; }
|
133
|
+
.rdoc-list p { margin: 0; padding: 0; margin-bottom: 4px; }
|
134
|
+
.summary_desc pre.code .object_link a, .docstring pre.code .object_link a {
|
135
|
+
padding: 0px; background: inherit; color: inherit; border-radius: inherit;
|
136
|
+
}
|
137
|
+
|
138
|
+
/* style for <table> */
|
139
|
+
#filecontents table, .docstring table { border-collapse: collapse; }
|
140
|
+
#filecontents table th, #filecontents table td,
|
141
|
+
.docstring table th, .docstring table td { border: 1px solid #ccc; padding: 8px; padding-right: 17px; }
|
142
|
+
#filecontents table tr:nth-child(odd),
|
143
|
+
.docstring table tr:nth-child(odd) { background: #eee; }
|
144
|
+
#filecontents table tr:nth-child(even),
|
145
|
+
.docstring table tr:nth-child(even) { background: #fff; }
|
146
|
+
#filecontents table th, .docstring table th { background: #fff; }
|
147
|
+
|
148
|
+
/* style for <ul> */
|
149
|
+
#filecontents li > p, .docstring li > p { margin: 0px; }
|
150
|
+
#filecontents ul, .docstring ul { padding-left: 20px; }
|
151
|
+
/* style for <dl> */
|
152
|
+
#filecontents dl, .docstring dl { border: 1px solid #ccc; }
|
153
|
+
#filecontents dt, .docstring dt { background: #ddd; font-weight: bold; padding: 3px 5px; }
|
154
|
+
#filecontents dd, .docstring dd { padding: 5px 0px; margin-left: 18px; }
|
155
|
+
#filecontents dd > p, .docstring dd > p { margin: 0px; }
|
156
|
+
|
157
|
+
.note {
|
158
|
+
color: #222;
|
159
|
+
margin: 20px 0;
|
160
|
+
padding: 10px;
|
161
|
+
border: 1px solid #eee;
|
162
|
+
border-radius: 3px;
|
163
|
+
display: block;
|
164
|
+
}
|
165
|
+
.docstring .note {
|
166
|
+
border-left-color: #ccc;
|
167
|
+
border-left-width: 5px;
|
168
|
+
}
|
169
|
+
.note.todo { background: #ffffc5; border-color: #ececaa; }
|
170
|
+
.note.returns_void { background: #efefef; }
|
171
|
+
.note.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
172
|
+
.note.title.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
173
|
+
.note.private { background: #ffffc5; border-color: #ececaa; }
|
174
|
+
.note.title { padding: 3px 6px; font-size: 0.9em; font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif; display: inline; }
|
175
|
+
.summary_signature + .note.title { margin-left: 7px; }
|
176
|
+
h1 .note.title { font-size: 0.5em; font-weight: normal; padding: 3px 5px; position: relative; top: -3px; text-transform: capitalize; }
|
177
|
+
.note.title { background: #efefef; }
|
178
|
+
.note.title.constructor { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
179
|
+
.note.title.writeonly { color: #fff; background: #45a638; border-color: #2da31d; }
|
180
|
+
.note.title.readonly { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
181
|
+
.note.title.private { background: #d5d5d5; border-color: #c5c5c5; }
|
182
|
+
.note.title.not_defined_here { background: transparent; border: none; font-style: italic; }
|
183
|
+
.discussion .note { margin-top: 6px; }
|
184
|
+
.discussion .note:first-child { margin-top: 0; }
|
185
|
+
|
186
|
+
h3.inherited {
|
187
|
+
font-style: italic;
|
188
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
189
|
+
font-weight: normal;
|
190
|
+
padding: 0;
|
191
|
+
margin: 0;
|
192
|
+
margin-top: 12px;
|
193
|
+
margin-bottom: 3px;
|
194
|
+
font-size: 13px;
|
195
|
+
}
|
196
|
+
p.inherited {
|
197
|
+
padding: 0;
|
198
|
+
margin: 0;
|
199
|
+
margin-left: 25px;
|
200
|
+
}
|
201
|
+
|
202
|
+
.box_info dl {
|
203
|
+
margin: 0;
|
204
|
+
border: 0;
|
205
|
+
width: 100%;
|
206
|
+
font-size: 1em;
|
207
|
+
display: flex;
|
208
|
+
display: -webkit-flex;
|
209
|
+
display: -ms-flexbox;
|
210
|
+
}
|
211
|
+
.box_info dl dt {
|
212
|
+
flex-shrink: 0;
|
213
|
+
-webkit-flex-shrink: 1;
|
214
|
+
-ms-flex-shrink: 1;
|
215
|
+
width: 100px;
|
216
|
+
text-align: right;
|
217
|
+
font-weight: bold;
|
218
|
+
border: 1px solid #aaa;
|
219
|
+
border-width: 1px 0px 0px 1px;
|
220
|
+
padding: 6px 0;
|
221
|
+
padding-right: 10px;
|
222
|
+
}
|
223
|
+
.box_info dl dd {
|
224
|
+
flex-grow: 1;
|
225
|
+
-webkit-flex-grow: 1;
|
226
|
+
-ms-flex: 1;
|
227
|
+
max-width: 420px;
|
228
|
+
padding: 6px 0;
|
229
|
+
padding-right: 20px;
|
230
|
+
border: 1px solid #aaa;
|
231
|
+
border-width: 1px 1px 0 0;
|
232
|
+
overflow: hidden;
|
233
|
+
position: relative;
|
234
|
+
}
|
235
|
+
.box_info dl:last-child > * {
|
236
|
+
border-bottom: 1px solid #aaa;
|
237
|
+
}
|
238
|
+
.box_info dl:nth-child(odd) > * { background: #eee; }
|
239
|
+
.box_info dl:nth-child(even) > * { background: #fff; }
|
240
|
+
.box_info dl > * { margin: 0; }
|
241
|
+
|
242
|
+
ul.toplevel { list-style: none; padding-left: 0; font-size: 1.1em; }
|
243
|
+
.index_inline_list { padding-left: 0; font-size: 1.1em; }
|
244
|
+
|
245
|
+
.index_inline_list li {
|
246
|
+
list-style: none;
|
247
|
+
display: inline-block;
|
248
|
+
padding: 0 12px;
|
249
|
+
line-height: 30px;
|
250
|
+
margin-bottom: 5px;
|
251
|
+
}
|
252
|
+
|
253
|
+
dl.constants { margin-left: 10px; }
|
254
|
+
dl.constants dt { font-weight: bold; font-size: 1.1em; margin-bottom: 5px; }
|
255
|
+
dl.constants.compact dt { display: inline-block; font-weight: normal }
|
256
|
+
dl.constants dd { width: 75%; white-space: pre; font-family: monospace; margin-bottom: 18px; }
|
257
|
+
dl.constants .docstring .note:first-child { margin-top: 5px; }
|
258
|
+
|
259
|
+
.summary_desc {
|
260
|
+
margin-left: 32px;
|
261
|
+
display: block;
|
262
|
+
font-family: sans-serif;
|
263
|
+
font-size: 1.1em;
|
264
|
+
margin-top: 8px;
|
265
|
+
line-height: 1.5145em;
|
266
|
+
margin-bottom: 0.8em;
|
267
|
+
}
|
268
|
+
.summary_desc tt { font-size: 0.9em; }
|
269
|
+
dl.constants .note { padding: 2px 6px; padding-right: 12px; margin-top: 6px; }
|
270
|
+
dl.constants .docstring { margin-left: 32px; font-size: 0.9em; font-weight: normal; }
|
271
|
+
dl.constants .tags { padding-left: 32px; font-size: 0.9em; line-height: 0.8em; }
|
272
|
+
dl.constants .discussion *:first-child { margin-top: 0; }
|
273
|
+
dl.constants .discussion *:last-child { margin-bottom: 0; }
|
274
|
+
|
275
|
+
.method_details { border-top: 1px dotted #ccc; margin-top: 25px; padding-top: 0; }
|
276
|
+
.method_details.first { border: 0; margin-top: 5px; }
|
277
|
+
.method_details.first h3.signature { margin-top: 1em; }
|
278
|
+
p.signature, h3.signature {
|
279
|
+
font-size: 1.1em; font-weight: normal; font-family: Monaco, Consolas, Courier, monospace;
|
280
|
+
padding: 6px 10px; margin-top: 1em;
|
281
|
+
background: #E8F4FF; border: 1px solid #d8d8e5; border-radius: 5px;
|
282
|
+
}
|
283
|
+
p.signature tt,
|
284
|
+
h3.signature tt { font-family: Monaco, Consolas, Courier, monospace; }
|
285
|
+
p.signature .overload,
|
286
|
+
h3.signature .overload { display: block; }
|
287
|
+
p.signature .extras,
|
288
|
+
h3.signature .extras { font-weight: normal; font-family: sans-serif; color: #444; font-size: 1em; }
|
289
|
+
p.signature .not_defined_here,
|
290
|
+
h3.signature .not_defined_here,
|
291
|
+
p.signature .aliases,
|
292
|
+
h3.signature .aliases { display: block; font-weight: normal; font-size: 0.9em; font-family: sans-serif; margin-top: 0px; color: #555; }
|
293
|
+
p.signature .aliases .names,
|
294
|
+
h3.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace; font-weight: bold; color: #000; font-size: 1.2em; }
|
295
|
+
|
296
|
+
.tags .tag_title { font-size: 1.05em; margin-bottom: 0; font-weight: bold; }
|
297
|
+
.tags .tag_title tt { color: initial; padding: initial; background: initial; }
|
298
|
+
.tags ul { margin-top: 5px; padding-left: 30px; list-style: square; }
|
299
|
+
.tags ul li { margin-bottom: 3px; }
|
300
|
+
.tags ul .name { font-family: monospace; font-weight: bold; }
|
301
|
+
.tags ul .note { padding: 3px 6px; }
|
302
|
+
.tags { margin-bottom: 12px; }
|
303
|
+
|
304
|
+
.tags .examples .tag_title { margin-bottom: 10px; font-weight: bold; }
|
305
|
+
.tags .examples .inline p { padding: 0; margin: 0; font-weight: bold; font-size: 1em; }
|
306
|
+
.tags .examples .inline p:before { content: "▸"; font-size: 1em; margin-right: 5px; }
|
307
|
+
|
308
|
+
.tags .overload .overload_item { list-style: none; margin-bottom: 25px; }
|
309
|
+
.tags .overload .overload_item .signature {
|
310
|
+
padding: 2px 8px;
|
311
|
+
background: #F1F8FF; border: 1px solid #d8d8e5; border-radius: 3px;
|
312
|
+
}
|
313
|
+
.tags .overload .signature { margin-left: -15px; font-family: monospace; display: block; font-size: 1.1em; }
|
314
|
+
.tags .overload .docstring { margin-top: 15px; }
|
315
|
+
|
316
|
+
.defines { display: none; }
|
317
|
+
|
318
|
+
#method_missing_details .notice.this { position: relative; top: -8px; color: #888; padding: 0; margin: 0; }
|
319
|
+
|
320
|
+
.showSource { font-size: 0.9em; }
|
321
|
+
.showSource a, .showSource a:visited { text-decoration: none; color: #666; }
|
322
|
+
|
323
|
+
#content a, #content a:visited { text-decoration: none; color: #05a; }
|
324
|
+
#content a:hover { background: #ffffa5; }
|
325
|
+
|
326
|
+
ul.summary {
|
327
|
+
list-style: none;
|
328
|
+
font-family: monospace;
|
329
|
+
font-size: 1em;
|
330
|
+
line-height: 1.5em;
|
331
|
+
padding-left: 0px;
|
332
|
+
}
|
333
|
+
ul.summary a, ul.summary a:visited {
|
334
|
+
text-decoration: none; font-size: 1.1em;
|
335
|
+
}
|
336
|
+
ul.summary li { margin-bottom: 5px; }
|
337
|
+
.summary_signature { padding: 4px 8px; background: #f8f8f8; border: 1px solid #f0f0f0; border-radius: 5px; }
|
338
|
+
.summary_signature:hover { background: #CFEBFF; border-color: #A4CCDA; cursor: pointer; }
|
339
|
+
.summary_signature.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
340
|
+
ul.summary.compact li { display: inline-block; margin: 0px 5px 0px 0px; line-height: 2.6em;}
|
341
|
+
ul.summary.compact .summary_signature { padding: 5px 7px; padding-right: 4px; }
|
342
|
+
#content .summary_signature:hover a,
|
343
|
+
#content .summary_signature:hover a:visited {
|
344
|
+
background: transparent;
|
345
|
+
color: #049;
|
346
|
+
}
|
347
|
+
|
348
|
+
p.inherited a { font-family: monospace; font-size: 0.9em; }
|
349
|
+
p.inherited { word-spacing: 5px; font-size: 1.2em; }
|
350
|
+
|
351
|
+
p.children { font-size: 1.2em; }
|
352
|
+
p.children a { font-size: 0.9em; }
|
353
|
+
p.children strong { font-size: 0.8em; }
|
354
|
+
p.children strong.modules { padding-left: 5px; }
|
355
|
+
|
356
|
+
ul.fullTree { display: none; padding-left: 0; list-style: none; margin-left: 0; margin-bottom: 10px; }
|
357
|
+
ul.fullTree ul { margin-left: 0; padding-left: 0; list-style: none; }
|
358
|
+
ul.fullTree li { text-align: center; padding-top: 18px; padding-bottom: 12px; background: url(data:image/gif;base64,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) no-repeat top center; }
|
359
|
+
ul.fullTree li:first-child { padding-top: 0; background: transparent; }
|
360
|
+
ul.fullTree li:last-child { padding-bottom: 0; }
|
361
|
+
.showAll ul.fullTree { display: block; }
|
362
|
+
.showAll .inheritName { display: none; }
|
363
|
+
|
364
|
+
#search { position: absolute; right: 12px; top: 0px; z-index: 9000; }
|
365
|
+
#search a {
|
366
|
+
display: block; float: left;
|
367
|
+
padding: 4px 8px; text-decoration: none; color: #05a; fill: #05a;
|
368
|
+
border: 1px solid #d8d8e5;
|
369
|
+
border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;
|
370
|
+
background: #F1F8FF;
|
371
|
+
box-shadow: -1px 1px 3px #ddd;
|
372
|
+
}
|
373
|
+
#search a:hover { background: #f5faff; color: #06b; fill: #06b; }
|
374
|
+
#search a.active {
|
375
|
+
background: #568; padding-bottom: 20px; color: #fff; fill: #fff;
|
376
|
+
border: 1px solid #457;
|
377
|
+
border-top-left-radius: 5px; border-top-right-radius: 5px;
|
378
|
+
}
|
379
|
+
#search a.inactive { color: #999; fill: #999; }
|
380
|
+
.inheritanceTree, .toggleDefines {
|
381
|
+
float: right;
|
382
|
+
border-left: 1px solid #aaa;
|
383
|
+
position: absolute; top: 0; right: 0;
|
384
|
+
height: 100%;
|
385
|
+
background: #f6f6f6;
|
386
|
+
padding: 5px;
|
387
|
+
min-width: 55px;
|
388
|
+
text-align: center;
|
389
|
+
}
|
390
|
+
|
391
|
+
#menu { font-size: 1.3em; color: #bbb; }
|
392
|
+
#menu .title, #menu a { font-size: 0.7em; }
|
393
|
+
#menu .title a { font-size: 1em; }
|
394
|
+
#menu .title { color: #555; }
|
395
|
+
#menu a, #menu a:visited { color: #333; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
396
|
+
#menu a:hover { color: #05a; }
|
397
|
+
|
398
|
+
#footer { margin-top: 15px; border-top: 1px solid #ccc; text-align: center; padding: 7px 0; color: #999; }
|
399
|
+
#footer a, #footer a:visited { color: #444; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
400
|
+
#footer a:hover { color: #05a; }
|
401
|
+
|
402
|
+
#listing ul.alpha { font-size: 1.1em; }
|
403
|
+
#listing ul.alpha { margin: 0; padding: 0; padding-bottom: 10px; list-style: none; }
|
404
|
+
#listing ul.alpha li.letter { font-size: 1.4em; padding-bottom: 10px; }
|
405
|
+
#listing ul.alpha ul { margin: 0; padding-left: 15px; }
|
406
|
+
#listing ul small { color: #666; font-size: 0.7em; }
|
407
|
+
|
408
|
+
li.r1 { background: #f0f0f0; }
|
409
|
+
li.r2 { background: #fafafa; }
|
410
|
+
|
411
|
+
#content ul.summary li.deprecated .summary_signature a,
|
412
|
+
#content ul.summary li.deprecated .summary_signature a:visited { text-decoration: line-through; font-style: italic; }
|
413
|
+
|
414
|
+
#toc {
|
415
|
+
position: relative;
|
416
|
+
float: right;
|
417
|
+
overflow-x: auto;
|
418
|
+
right: -3px;
|
419
|
+
margin-left: 20px;
|
420
|
+
margin-bottom: 20px;
|
421
|
+
padding: 20px; padding-right: 30px;
|
422
|
+
max-width: 300px;
|
423
|
+
z-index: 5000;
|
424
|
+
background: #fefefe;
|
425
|
+
border: 1px solid #ddd;
|
426
|
+
box-shadow: -2px 2px 6px #bbb;
|
427
|
+
}
|
428
|
+
#toc .title { margin: 0; }
|
429
|
+
#toc ol { padding-left: 1.8em; }
|
430
|
+
#toc li { font-size: 1.1em; line-height: 1.7em; }
|
431
|
+
#toc > ol > li { font-size: 1.1em; font-weight: bold; }
|
432
|
+
#toc ol > li > ol { font-size: 0.9em; }
|
433
|
+
#toc ol ol > li > ol { padding-left: 2.3em; }
|
434
|
+
#toc ol + li { margin-top: 0.3em; }
|
435
|
+
#toc.hidden { padding: 10px; background: #fefefe; box-shadow: none; }
|
436
|
+
#toc.hidden:hover { background: #fafafa; }
|
437
|
+
#filecontents h1 + #toc.nofloat { margin-top: 0; }
|
438
|
+
@media (max-width: 560px) {
|
439
|
+
#toc {
|
440
|
+
margin-left: 0;
|
441
|
+
margin-top: 16px;
|
442
|
+
float: none;
|
443
|
+
max-width: none;
|
444
|
+
}
|
445
|
+
}
|
446
|
+
|
447
|
+
/* syntax highlighting */
|
448
|
+
.source_code { display: none; padding: 3px 8px; border-left: 8px solid #ddd; margin-top: 5px; }
|
449
|
+
#filecontents pre.code, .docstring pre.code, .source_code pre { font-family: monospace; }
|
450
|
+
#filecontents pre.code, .docstring pre.code { display: block; }
|
451
|
+
.source_code .lines { padding-right: 12px; color: #555; text-align: right; }
|
452
|
+
#filecontents pre.code, .docstring pre.code,
|
453
|
+
.tags pre.example {
|
454
|
+
padding: 9px 14px;
|
455
|
+
margin-top: 4px;
|
456
|
+
border: 1px solid #e1e1e8;
|
457
|
+
background: #f7f7f9;
|
458
|
+
border-radius: 4px;
|
459
|
+
font-size: 1em;
|
460
|
+
overflow-x: auto;
|
461
|
+
line-height: 1.2em;
|
462
|
+
}
|
463
|
+
pre.code { color: #000; tab-size: 2; }
|
464
|
+
pre.code .info.file { color: #555; }
|
465
|
+
pre.code .val { color: #036A07; }
|
466
|
+
pre.code .tstring_content,
|
467
|
+
pre.code .heredoc_beg, pre.code .heredoc_end,
|
468
|
+
pre.code .qwords_beg, pre.code .qwords_end, pre.code .qwords_sep,
|
469
|
+
pre.code .words_beg, pre.code .words_end, pre.code .words_sep,
|
470
|
+
pre.code .qsymbols_beg, pre.code .qsymbols_end, pre.code .qsymbols_sep,
|
471
|
+
pre.code .symbols_beg, pre.code .symbols_end, pre.code .symbols_sep,
|
472
|
+
pre.code .tstring, pre.code .dstring { color: #036A07; }
|
473
|
+
pre.code .fid, pre.code .rubyid_new, pre.code .rubyid_to_s,
|
474
|
+
pre.code .rubyid_to_sym, pre.code .rubyid_to_f,
|
475
|
+
pre.code .dot + pre.code .id,
|
476
|
+
pre.code .rubyid_to_i pre.code .rubyid_each { color: #0085FF; }
|
477
|
+
pre.code .comment { color: #0066FF; }
|
478
|
+
pre.code .const, pre.code .constant { color: #585CF6; }
|
479
|
+
pre.code .label,
|
480
|
+
pre.code .symbol { color: #C5060B; }
|
481
|
+
pre.code .kw,
|
482
|
+
pre.code .rubyid_require,
|
483
|
+
pre.code .rubyid_extend,
|
484
|
+
pre.code .rubyid_include { color: #0000FF; }
|
485
|
+
pre.code .ivar { color: #318495; }
|
486
|
+
pre.code .gvar,
|
487
|
+
pre.code .rubyid_backref,
|
488
|
+
pre.code .rubyid_nth_ref { color: #6D79DE; }
|
489
|
+
pre.code .regexp, .dregexp { color: #036A07; }
|
490
|
+
pre.code a { border-bottom: 1px dotted #bbf; }
|
491
|
+
/* inline code */
|
492
|
+
*:not(pre) > code {
|
493
|
+
padding: 1px 3px 1px 3px;
|
494
|
+
border: 1px solid #E1E1E8;
|
495
|
+
background: #F7F7F9;
|
496
|
+
border-radius: 4px;
|
497
|
+
}
|
498
|
+
|
499
|
+
/* Color fix for links */
|
500
|
+
#content .summary_desc pre.code .id > .object_link a, /* identifier */
|
501
|
+
#content .docstring pre.code .id > .object_link a { color: #0085FF; }
|
502
|
+
#content .summary_desc pre.code .const > .object_link a, /* constant */
|
503
|
+
#content .docstring pre.code .const > .object_link a { color: #585CF6; }
|
@@ -0,0 +1,108 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
File: README
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.37
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
16
|
+
|
17
|
+
<script type="text/javascript">
|
18
|
+
pathId = "README";
|
19
|
+
relpath = '';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
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">
|
38
|
+
|
39
|
+
<a href="_index.html">Index</a> »
|
40
|
+
<span class="title">File: README</span>
|
41
|
+
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<div id="search">
|
45
|
+
|
46
|
+
<a class="full_list_link" id="class_list_link"
|
47
|
+
href="class_list.html">
|
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>
|
54
|
+
</a>
|
55
|
+
|
56
|
+
</div>
|
57
|
+
<div class="clear"></div>
|
58
|
+
</div>
|
59
|
+
|
60
|
+
<div id="content"><div id='filecontents'>
|
61
|
+
<h1 id="label-Cdss-3A-3ARuby">Cdss::Ruby</h1>
|
62
|
+
|
63
|
+
<p>TODO: Delete this and the text below, and describe your gem</p>
|
64
|
+
|
65
|
+
<p>Welcome to your new gem! In this directory, you’ll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file <code>lib/cdss/ruby</code>. To experiment with that code, run <code>bin/console</code> for an interactive prompt.</p>
|
66
|
+
|
67
|
+
<h2 id="label-Installation">Installation</h2>
|
68
|
+
|
69
|
+
<p>TODO: Replace <code>UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG</code> with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don’t plan to release to RubyGems.org.</p>
|
70
|
+
|
71
|
+
<p>Install the gem and add to the application’s Gemfile by executing:</p>
|
72
|
+
|
73
|
+
<pre class="code ruby"><code class="ruby">$ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
|
74
|
+
</code></pre>
|
75
|
+
|
76
|
+
<p>If bundler is not being used to manage dependencies, install the gem by executing:</p>
|
77
|
+
|
78
|
+
<pre class="code ruby"><code class="ruby">$ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
|
79
|
+
</code></pre>
|
80
|
+
|
81
|
+
<h2 id="label-Usage">Usage</h2>
|
82
|
+
|
83
|
+
<p>TODO: Write usage instructions here</p>
|
84
|
+
|
85
|
+
<h2 id="label-Development">Development</h2>
|
86
|
+
|
87
|
+
<p>After checking out the repo, run <code>bin/setup</code> to install dependencies. Then, run <code>rake test</code> to run the tests. You can also run <code>bin/console</code> for an interactive prompt that will allow you to experiment.</p>
|
88
|
+
|
89
|
+
<p>To install this gem onto your local machine, run <code>bundle exec rake install</code>. To release a new version, update the version number in <code>version.rb</code>, and then run <code>bundle exec rake release</code>, which will create a git tag for the version, push git commits and the created tag, and push the <code>.gem</code> file to <a href="https://rubygems.org">rubygems.org</a>.</p>
|
90
|
+
|
91
|
+
<h2 id="label-Contributing">Contributing</h2>
|
92
|
+
|
93
|
+
<p>Bug reports and pull requests are welcome on GitHub at <a href="https://github.com/mgm702/cdss-ruby">github.com/mgm702/cdss-ruby</a>. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the <a href="https://github.com/mgm702/cdss-ruby/blob/main/CODE_OF_CONDUCT.md">code of conduct</a>.</p>
|
94
|
+
|
95
|
+
<h2 id="label-Code+of+Conduct">Code of Conduct</h2>
|
96
|
+
|
97
|
+
<p>Everyone interacting in the Cdss::Ruby project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the <a href="https://github.com/mgm702/cdss-ruby/blob/main/CODE_OF_CONDUCT.md">code of conduct</a>.</p>
|
98
|
+
</div></div>
|
99
|
+
|
100
|
+
<div id="footer">
|
101
|
+
Generated on Thu Feb 20 21:19:08 2025 by
|
102
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
103
|
+
0.9.37 (ruby-3.2.2).
|
104
|
+
</div>
|
105
|
+
|
106
|
+
</div>
|
107
|
+
</body>
|
108
|
+
</html>
|
data/docs/file_list.html
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html >
|
3
|
+
<head>
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5
|
+
<meta charset="utf-8" />
|
6
|
+
|
7
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" />
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
16
|
+
|
17
|
+
|
18
|
+
<title>File List</title>
|
19
|
+
<base id="base_target" target="_parent" />
|
20
|
+
</head>
|
21
|
+
<body>
|
22
|
+
<div id="content">
|
23
|
+
<div class="fixed_header">
|
24
|
+
<h1 id="full_list_header">File List</h1>
|
25
|
+
<div id="full_list_nav">
|
26
|
+
|
27
|
+
<span><a target="_self" href="class_list.html">
|
28
|
+
Classes
|
29
|
+
</a></span>
|
30
|
+
|
31
|
+
<span><a target="_self" href="method_list.html">
|
32
|
+
Methods
|
33
|
+
</a></span>
|
34
|
+
|
35
|
+
<span><a target="_self" href="file_list.html">
|
36
|
+
Files
|
37
|
+
</a></span>
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="search">
|
42
|
+
<label for="search-class">Search:</label>
|
43
|
+
<input id="search-class" type="text" />
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<ul id="full_list" class="file">
|
48
|
+
|
49
|
+
|
50
|
+
<li id="object_README" class="odd">
|
51
|
+
<div class="item"><span class="object_link"><a href="index.html" title="README">README</a></span></div>
|
52
|
+
</li>
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
</ul>
|
57
|
+
</div>
|
58
|
+
</body>
|
59
|
+
</html>
|
data/docs/frames.html
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>Documentation by YARD 0.9.37</title>
|
6
|
+
</head>
|
7
|
+
<script type="text/javascript">
|
8
|
+
var mainUrl = 'index.html';
|
9
|
+
try {
|
10
|
+
var match = decodeURIComponent(window.location.hash).match(/^#!(.+)/);
|
11
|
+
var name = match ? match[1] : mainUrl;
|
12
|
+
var url = new URL(name, location.href);
|
13
|
+
window.top.location.replace(url.origin === location.origin ? name : mainUrl);
|
14
|
+
} catch (e) {
|
15
|
+
window.top.location.replace(mainUrl);
|
16
|
+
}
|
17
|
+
</script>
|
18
|
+
<noscript>
|
19
|
+
<h1>Oops!</h1>
|
20
|
+
<h2>YARD requires JavaScript!</h2>
|
21
|
+
</noscript>
|
22
|
+
</html>
|