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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2b91bbf7a82c936eaa700c842aadc4cf3275eafbf3dab96d1f57fe0d2c208cd
4
- data.tar.gz: 8b9180cf1818c8a7275075fc5d4fd3c3ac336146ea2ef9492205a0c0988945b7
3
+ metadata.gz: b49c570b507bb6ce03fdaa3606993b88f9c7049c317105d12ce0a4a81ecdd343
4
+ data.tar.gz: a20ea44b69f586364aa973b09e53830e815964dc28350adbf90bd83a884a752c
5
5
  SHA512:
6
- metadata.gz: '073497cc044bfa98614a5cdafb9b59931a9c30e635f7bd6e32c3ebb7342bab1139a7f6c651fad9fa5d804d715b61afacb412ed597f45a8225ee2a33cb50f1c19'
7
- data.tar.gz: 183aa21ef6e49c094974deccf0edf6b6a46b9eba0bca3a04a70cce3236e720817ba5ec76d729924dd4dce3d54797372d0faaeb920e2208eb7a149ae7f65c55e0
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
+ }
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ def stylesheets_full_list
4
+ super + %w[css/dark.css]
5
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ def stylesheets
4
+ super + %w[css/dark.css]
5
+ end
data/.yardopts CHANGED
@@ -1,5 +1,7 @@
1
1
  --readme README.md
2
2
  --markup markdown
3
+ --asset assets:assets
4
+ --template-path .yard/templates
3
5
  --no-private
4
6
  --output-dir doc
5
7
  --exclude tmp/
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
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2025 Gert Goet
3
+ Copyright (c) 2026 Gert Goet
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal