appquery 0.6.0 → 0.7.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yard/templates/default/fulldoc/html/css/dark.css +234 -0
- data/.yard/templates/default/fulldoc/html/setup.rb +5 -0
- data/.yard/templates/default/layout/html/setup.rb +5 -0
- data/.yardopts +2 -0
- data/CHANGELOG.md +9 -0
- data/LICENSE.txt +1 -1
- data/README.md +179 -276
- data/assets/banner-dark.svg +222 -0
- data/assets/banner-light.svg +222 -0
- data/lib/app_query/tokenizer.rb +12 -2
- data/lib/app_query/version.rb +1 -1
- metadata +6 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b49c570b507bb6ce03fdaa3606993b88f9c7049c317105d12ce0a4a81ecdd343
|
|
4
|
+
data.tar.gz: a20ea44b69f586364aa973b09e53830e815964dc28350adbf90bd83a884a752c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 839e2eb08a980ce17445bf8dab239bfb93866a1e082b1adee7c7778926b2ab31178cfb183c01c523953eaa8ce8beda92c8a19f81604ec198eb468afa038247ca
|
|
7
|
+
data.tar.gz: 57888bbb1de3819a95bc30eb3ca39f43962547551dcead6f387f819a5644f9f75e6fd42761ec5822b7b6bf7039a25e84f1e7acf05ddedd7b451000c4856f8528
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
/* Dark mode styles for YARD documentation */
|
|
2
|
+
@media (prefers-color-scheme: dark) {
|
|
3
|
+
:root {
|
|
4
|
+
color-scheme: dark;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
background: #0d1117;
|
|
9
|
+
color: #c9d1d9;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/* Main content area */
|
|
13
|
+
#main {
|
|
14
|
+
background: #0d1117;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Navigation */
|
|
18
|
+
#nav {
|
|
19
|
+
border-right-color: #30363d;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@media (max-width: 920px) {
|
|
23
|
+
#nav {
|
|
24
|
+
background: #161b22;
|
|
25
|
+
border-color: #30363d;
|
|
26
|
+
box-shadow: -7px 5px 25px #010409;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Links */
|
|
31
|
+
#content a, #content a:visited {
|
|
32
|
+
color: #58a6ff;
|
|
33
|
+
}
|
|
34
|
+
#content a:hover {
|
|
35
|
+
background: #1f2428;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Headers */
|
|
39
|
+
h1 {
|
|
40
|
+
border-top-color: #30363d;
|
|
41
|
+
}
|
|
42
|
+
h2 {
|
|
43
|
+
border-bottom-color: #30363d;
|
|
44
|
+
}
|
|
45
|
+
h2 small a {
|
|
46
|
+
border-color: #30363d;
|
|
47
|
+
background: #161b22;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* Code blocks */
|
|
51
|
+
#filecontents pre.code, .docstring pre.code, .tags pre.example {
|
|
52
|
+
background: #161b22;
|
|
53
|
+
border-color: #30363d;
|
|
54
|
+
}
|
|
55
|
+
pre.code { color: #c9d1d9; }
|
|
56
|
+
pre.code .comment { color: #8b949e; }
|
|
57
|
+
pre.code .const, pre.code .constant { color: #d2a8ff; }
|
|
58
|
+
pre.code .kw { color: #ff7b72; }
|
|
59
|
+
pre.code .tstring_content, pre.code .tstring, pre.code .dstring,
|
|
60
|
+
pre.code .heredoc_beg, pre.code .heredoc_end,
|
|
61
|
+
pre.code .val { color: #a5d6ff; }
|
|
62
|
+
pre.code .symbol, pre.code .label { color: #7ee787; }
|
|
63
|
+
pre.code .ivar { color: #ffa657; }
|
|
64
|
+
pre.code .fid, pre.code .rubyid_new { color: #d2a8ff; }
|
|
65
|
+
|
|
66
|
+
/* Inline code */
|
|
67
|
+
.docstring p > code, .docstring p > tt,
|
|
68
|
+
.tags p > code, .tags p > tt {
|
|
69
|
+
color: #f97583;
|
|
70
|
+
background: #161b22;
|
|
71
|
+
}
|
|
72
|
+
*:not(pre) > code {
|
|
73
|
+
background: #161b22;
|
|
74
|
+
border-color: #30363d;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* Object links in docstrings */
|
|
78
|
+
.summary_desc .object_link a, .docstring .object_link a {
|
|
79
|
+
color: #58a6ff;
|
|
80
|
+
background: #1f2428;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* Signatures */
|
|
84
|
+
p.signature, h3.signature {
|
|
85
|
+
background: #161b22;
|
|
86
|
+
border-color: #30363d;
|
|
87
|
+
}
|
|
88
|
+
p.signature .extras, h3.signature .extras { color: #8b949e; }
|
|
89
|
+
|
|
90
|
+
/* Summary boxes */
|
|
91
|
+
.summary_signature {
|
|
92
|
+
background: #161b22;
|
|
93
|
+
border-color: #30363d;
|
|
94
|
+
}
|
|
95
|
+
.summary_signature:hover {
|
|
96
|
+
background: #1f2937;
|
|
97
|
+
border-color: #3b82f6;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* Tables */
|
|
101
|
+
#filecontents table th, #filecontents table td,
|
|
102
|
+
.docstring table th, .docstring table td {
|
|
103
|
+
border-color: #30363d;
|
|
104
|
+
}
|
|
105
|
+
#filecontents table tr:nth-child(odd),
|
|
106
|
+
.docstring table tr:nth-child(odd) { background: #161b22; }
|
|
107
|
+
#filecontents table tr:nth-child(even),
|
|
108
|
+
.docstring table tr:nth-child(even) { background: #0d1117; }
|
|
109
|
+
#filecontents table th, .docstring table th { background: #21262d; }
|
|
110
|
+
|
|
111
|
+
/* Box info */
|
|
112
|
+
.box_info dl dt {
|
|
113
|
+
border-color: #30363d;
|
|
114
|
+
}
|
|
115
|
+
.box_info dl dd {
|
|
116
|
+
border-color: #30363d;
|
|
117
|
+
}
|
|
118
|
+
.box_info dl:nth-child(odd) > * { background: #161b22; }
|
|
119
|
+
.box_info dl:nth-child(even) > * { background: #0d1117; }
|
|
120
|
+
|
|
121
|
+
/* Definition lists */
|
|
122
|
+
#filecontents dl, .docstring dl { border-color: #30363d; }
|
|
123
|
+
#filecontents dt, .docstring dt { background: #21262d; }
|
|
124
|
+
|
|
125
|
+
/* Notes */
|
|
126
|
+
.note {
|
|
127
|
+
border-color: #30363d;
|
|
128
|
+
color: #c9d1d9;
|
|
129
|
+
}
|
|
130
|
+
.note.todo { background: #3d3200; border-color: #5c4a00; }
|
|
131
|
+
.note.deprecated { background: #3d1f1f; border-color: #5c2d2d; }
|
|
132
|
+
.note.returns_void { background: #21262d; }
|
|
133
|
+
.note.title { background: #21262d; }
|
|
134
|
+
.note.title.constructor { background: #1f3a5f; border-color: #2d4a6f; }
|
|
135
|
+
.note.title.writeonly { background: #1a4d1a; border-color: #2a5d2a; }
|
|
136
|
+
.note.title.readonly { background: #1f3a5f; border-color: #2d4a6f; }
|
|
137
|
+
.note.title.private { background: #30363d; border-color: #484f58; }
|
|
138
|
+
|
|
139
|
+
/* Search */
|
|
140
|
+
#search a {
|
|
141
|
+
background: #161b22;
|
|
142
|
+
border-color: #30363d;
|
|
143
|
+
color: #58a6ff;
|
|
144
|
+
fill: #58a6ff;
|
|
145
|
+
box-shadow: -1px 1px 3px #010409;
|
|
146
|
+
}
|
|
147
|
+
#search a:hover { background: #1f2428; }
|
|
148
|
+
#search a.active {
|
|
149
|
+
background: #1f6feb;
|
|
150
|
+
border-color: #1f6feb;
|
|
151
|
+
}
|
|
152
|
+
#search a.inactive { color: #484f58; fill: #484f58; }
|
|
153
|
+
|
|
154
|
+
/* Menu */
|
|
155
|
+
#menu { color: #484f58; }
|
|
156
|
+
#menu .title { color: #c9d1d9; }
|
|
157
|
+
#menu a, #menu a:visited { color: #c9d1d9; border-bottom-color: #30363d; }
|
|
158
|
+
#menu a:hover { color: #58a6ff; }
|
|
159
|
+
|
|
160
|
+
/* Footer */
|
|
161
|
+
#footer { border-top-color: #30363d; color: #8b949e; }
|
|
162
|
+
#footer a, #footer a:visited { color: #c9d1d9; border-bottom-color: #30363d; }
|
|
163
|
+
#footer a:hover { color: #58a6ff; }
|
|
164
|
+
|
|
165
|
+
/* TOC */
|
|
166
|
+
#toc {
|
|
167
|
+
background: #161b22;
|
|
168
|
+
border-color: #30363d;
|
|
169
|
+
box-shadow: -2px 2px 6px #010409;
|
|
170
|
+
}
|
|
171
|
+
#toc.hidden { background: #161b22; }
|
|
172
|
+
#toc.hidden:hover { background: #1f2428; }
|
|
173
|
+
|
|
174
|
+
/* Method details */
|
|
175
|
+
.method_details { border-top-color: #30363d; }
|
|
176
|
+
|
|
177
|
+
/* Inheritance tree */
|
|
178
|
+
.inheritanceTree, .toggleDefines {
|
|
179
|
+
background: #161b22;
|
|
180
|
+
border-left-color: #30363d;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/* Source code */
|
|
184
|
+
.source_code { border-left-color: #30363d; }
|
|
185
|
+
.source_code .lines { color: #8b949e; }
|
|
186
|
+
|
|
187
|
+
/* List items */
|
|
188
|
+
li.r1 { background: #161b22; }
|
|
189
|
+
li.r2 { background: #0d1117; }
|
|
190
|
+
|
|
191
|
+
/* Constants */
|
|
192
|
+
dl.constants dd { color: #c9d1d9; }
|
|
193
|
+
|
|
194
|
+
/* Full list pages (Class List, Method List, File List) */
|
|
195
|
+
.fixed_header {
|
|
196
|
+
background: #0d1117;
|
|
197
|
+
}
|
|
198
|
+
#noresults {
|
|
199
|
+
background: #161b22;
|
|
200
|
+
}
|
|
201
|
+
li.odd {
|
|
202
|
+
background: #161b22;
|
|
203
|
+
}
|
|
204
|
+
li.even {
|
|
205
|
+
background: #0d1117;
|
|
206
|
+
}
|
|
207
|
+
.item:hover {
|
|
208
|
+
background: #21262d;
|
|
209
|
+
}
|
|
210
|
+
a, a:visited {
|
|
211
|
+
color: #58a6ff;
|
|
212
|
+
}
|
|
213
|
+
li {
|
|
214
|
+
color: #8b949e;
|
|
215
|
+
}
|
|
216
|
+
li.clicked > .item {
|
|
217
|
+
background: #1f6feb;
|
|
218
|
+
color: #c9d1d9;
|
|
219
|
+
}
|
|
220
|
+
li.clicked > .item a, li.clicked > .item a:visited {
|
|
221
|
+
color: #fff;
|
|
222
|
+
}
|
|
223
|
+
#search input {
|
|
224
|
+
background: #0d1117;
|
|
225
|
+
border-color: #30363d;
|
|
226
|
+
color: #c9d1d9;
|
|
227
|
+
}
|
|
228
|
+
#full_list_nav {
|
|
229
|
+
color: #484f58;
|
|
230
|
+
}
|
|
231
|
+
#full_list_nav a, #nav a:visited {
|
|
232
|
+
color: #58a6ff;
|
|
233
|
+
}
|
|
234
|
+
}
|
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
### 🐛 Fixes
|
|
4
|
+
|
|
5
|
+
- 🔧 Fix literal strings containing parentheses breaking CTE-parsing.
|
|
6
|
+
|
|
7
|
+
## 0.6.0
|
|
8
|
+
|
|
9
|
+
**Releasedate**: 2-1-2026
|
|
10
|
+
**Rubygems**: https://rubygems.org/gems/appquery/versions/0.6.0
|
|
11
|
+
|
|
3
12
|
### ✨ Features
|
|
4
13
|
|
|
5
14
|
- 🏗️ **`AppQuery::BaseQuery`** — structured query objects with explicit parameter declaration
|
data/LICENSE.txt
CHANGED