click_house-client 0.2.3 → 0.3.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 +4 -4
- data/.gitlab-ci.yml +73 -0
- data/.rspec +3 -0
- data/.rubocop.yml +14 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/CONTRIBUTING.md +40 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +176 -0
- data/LICENSE.txt +21 -0
- data/README.md +62 -0
- data/click_house-client.gemspec +33 -0
- data/lib/click_house/client/arel_engine.rb +19 -0
- data/lib/click_house/client/bind_index_manager.rb +17 -0
- data/lib/click_house/client/configuration.rb +78 -0
- data/lib/click_house/client/database.rb +48 -0
- data/lib/click_house/client/formatter.rb +35 -0
- data/lib/click_house/client/query.rb +82 -0
- data/lib/click_house/client/query_builder.rb +156 -0
- data/lib/click_house/client/query_like.rb +31 -0
- data/lib/click_house/client/quoting.rb +25 -0
- data/lib/click_house/client/redactor.rb +69 -0
- data/lib/click_house/client/response.rb +19 -0
- data/lib/click_house/client/version.rb +7 -0
- data/lib/click_house/client.rb +137 -0
- metadata +45 -8
metadata
CHANGED
@@ -1,29 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: click_house-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- group::optimize
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activerecord
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '7.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '7.0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: activesupport
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
|
-
- - "
|
31
|
+
- - "~>"
|
18
32
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
33
|
+
version: '7.0'
|
20
34
|
type: :runtime
|
21
35
|
prerelease: false
|
22
36
|
version_requirements: !ruby/object:Gem::Requirement
|
23
37
|
requirements:
|
24
|
-
- - "
|
38
|
+
- - "~>"
|
25
39
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
40
|
+
version: '7.0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: addressable
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,7 +143,30 @@ email:
|
|
129
143
|
executables: []
|
130
144
|
extensions: []
|
131
145
|
extra_rdoc_files: []
|
132
|
-
files:
|
146
|
+
files:
|
147
|
+
- ".gitlab-ci.yml"
|
148
|
+
- ".rspec"
|
149
|
+
- ".rubocop.yml"
|
150
|
+
- CODE_OF_CONDUCT.md
|
151
|
+
- CONTRIBUTING.md
|
152
|
+
- Gemfile
|
153
|
+
- Gemfile.lock
|
154
|
+
- LICENSE.txt
|
155
|
+
- README.md
|
156
|
+
- click_house-client.gemspec
|
157
|
+
- lib/click_house/client.rb
|
158
|
+
- lib/click_house/client/arel_engine.rb
|
159
|
+
- lib/click_house/client/bind_index_manager.rb
|
160
|
+
- lib/click_house/client/configuration.rb
|
161
|
+
- lib/click_house/client/database.rb
|
162
|
+
- lib/click_house/client/formatter.rb
|
163
|
+
- lib/click_house/client/query.rb
|
164
|
+
- lib/click_house/client/query_builder.rb
|
165
|
+
- lib/click_house/client/query_like.rb
|
166
|
+
- lib/click_house/client/quoting.rb
|
167
|
+
- lib/click_house/client/redactor.rb
|
168
|
+
- lib/click_house/client/response.rb
|
169
|
+
- lib/click_house/client/version.rb
|
133
170
|
homepage: https://gitlab.com/gitlab-org/ruby/gems/clickhouse-client
|
134
171
|
licenses:
|
135
172
|
- MIT
|
@@ -142,7 +179,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
179
|
requirements:
|
143
180
|
- - ">="
|
144
181
|
- !ruby/object:Gem::Version
|
145
|
-
version: '3.
|
182
|
+
version: '3.1'
|
146
183
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
184
|
requirements:
|
148
185
|
- - ">="
|