tiny_tds 2.1.6-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +407 -0
- data/.codeclimate.yml +20 -0
- data/.gitattributes +1 -0
- data/.gitignore +22 -0
- data/.rubocop.yml +31 -0
- data/CHANGELOG.md +280 -0
- data/CODE_OF_CONDUCT.md +31 -0
- data/Gemfile +2 -0
- data/ISSUE_TEMPLATE.md +38 -0
- data/MIT-LICENSE +23 -0
- data/README.md +504 -0
- data/Rakefile +62 -0
- data/VERSION +1 -0
- data/bin/defncopy-ttds +3 -0
- data/bin/tsql-ttds +3 -0
- data/docker-compose.yml +34 -0
- data/exe/.keep +0 -0
- data/ext/tiny_tds/client.c +499 -0
- data/ext/tiny_tds/client.h +53 -0
- data/ext/tiny_tds/extconf.rb +92 -0
- data/ext/tiny_tds/extconsts.rb +15 -0
- data/ext/tiny_tds/result.c +634 -0
- data/ext/tiny_tds/result.h +32 -0
- data/ext/tiny_tds/tiny_tds_ext.c +12 -0
- data/ext/tiny_tds/tiny_tds_ext.h +17 -0
- data/lib/tiny_tds/3.1/tiny_tds.so +0 -0
- data/lib/tiny_tds/3.2/tiny_tds.so +0 -0
- data/lib/tiny_tds/bin.rb +104 -0
- data/lib/tiny_tds/client.rb +136 -0
- data/lib/tiny_tds/error.rb +14 -0
- data/lib/tiny_tds/gem.rb +27 -0
- data/lib/tiny_tds/result.rb +7 -0
- data/lib/tiny_tds/version.rb +3 -0
- data/lib/tiny_tds.rb +61 -0
- data/patches/freetds/1.00.27/0001-mingw_missing_inet_pton.diff +34 -0
- data/patches/freetds/1.00.27/0002-Don-t-use-MSYS2-file-libws2_32.diff +28 -0
- data/patches/libiconv/1.14/1-avoid-gets-error.patch +17 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/bsqldb.exe +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/datacopy.exe +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/defncopy.exe +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/freebcp.exe +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/libct-4.dll +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/libsybdb-5.dll +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/osql +388 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/tdspool.exe +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/bin/tsql.exe +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/lib/libct.dll.a +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/lib/libct.la +41 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/lib/libsybdb.dll.a +0 -0
- data/ports/x64-mingw-ucrt/freetds/1.1.24/lib/libsybdb.la +41 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/bin/iconv.exe +0 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/bin/libcharset-1.dll +0 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/bin/libiconv-2.dll +0 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/lib/charset.alias +4 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/lib/libcharset.dll.a +0 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/lib/libcharset.la +41 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/lib/libiconv.dll.a +0 -0
- data/ports/x64-mingw-ucrt/libiconv/1.15/lib/libiconv.la +41 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/bin/c_rehash +251 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/bin/libcrypto-1_1-x64.dll +0 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/bin/libssl-1_1-x64.dll +0 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/bin/openssl.exe +0 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/lib/libcrypto.a +0 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/lib/libcrypto.dll.a +0 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/lib/libssl.a +0 -0
- data/ports/x64-mingw-ucrt/openssl/1.1.1s/lib/libssl.dll.a +0 -0
- data/setup_cimgruby_dev.sh +25 -0
- data/start_dev.sh +21 -0
- data/tasks/native_gem.rake +23 -0
- data/tasks/package.rake +8 -0
- data/tasks/ports/freetds.rb +37 -0
- data/tasks/ports/libiconv.rb +26 -0
- data/tasks/ports/openssl.rb +62 -0
- data/tasks/ports/recipe.rb +64 -0
- data/tasks/ports.rake +108 -0
- data/tasks/test.rake +9 -0
- data/test/benchmark/query.rb +77 -0
- data/test/benchmark/query_odbc.rb +106 -0
- data/test/benchmark/query_tinytds.rb +126 -0
- data/test/bin/install-freetds.sh +20 -0
- data/test/bin/install-mssql.ps1 +31 -0
- data/test/bin/install-mssqltools.sh +9 -0
- data/test/bin/install-openssl.sh +18 -0
- data/test/bin/setup_tinytds_db.sh +7 -0
- data/test/bin/setup_volume_permissions.sh +10 -0
- data/test/client_test.rb +275 -0
- data/test/gem_test.rb +177 -0
- data/test/result_test.rb +814 -0
- data/test/schema/1px.gif +0 -0
- data/test/schema/sqlserver_2000.sql +140 -0
- data/test/schema/sqlserver_2005.sql +140 -0
- data/test/schema/sqlserver_2008.sql +140 -0
- data/test/schema/sqlserver_2014.sql +140 -0
- data/test/schema/sqlserver_2016.sql +140 -0
- data/test/schema/sqlserver_azure.sql +140 -0
- data/test/schema/sybase_ase.sql +138 -0
- data/test/schema_test.rb +443 -0
- data/test/sql/db-create.sql +18 -0
- data/test/sql/db-login.sql +38 -0
- data/test/test_helper.rb +280 -0
- data/test/thread_test.rb +98 -0
- data/tiny_tds.gemspec +31 -0
- metadata +267 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 515f2160172e98e9057f38803ed37e1185431967b9f6d5f5de1fa9e6b2d38f6b
|
4
|
+
data.tar.gz: 345995525706484cb6fc699b770faed5cf0f6155fa1d433e76ffbf55ae55d01c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 941f77546dc790878bf9d78a20b3e68f6edea2d049955e0df91502691a992fe431194b2b1fa01d1fd511b249a94776b130dd9dfd6299def89a0bba29bd1b2adf
|
7
|
+
data.tar.gz: 5cd7318afe79a2799e9c6d35ac6b2b8b3c66deca103fb3c9d774b645386874b6d3f1dd9173610d529cd69d53a898625cfbcea9faf3c785c9d682a48dc8301812
|
@@ -0,0 +1,407 @@
|
|
1
|
+
version: 2.1
|
2
|
+
|
3
|
+
orbs:
|
4
|
+
win: circleci/windows@4.1
|
5
|
+
ruby: circleci/ruby@2.0.0
|
6
|
+
|
7
|
+
commands:
|
8
|
+
install-ruby-windows:
|
9
|
+
description: "Install Ruby on Windows"
|
10
|
+
parameters:
|
11
|
+
ruby_version:
|
12
|
+
description: 'version tag for the cimg/ruby container'
|
13
|
+
type: string
|
14
|
+
steps:
|
15
|
+
- run:
|
16
|
+
name: remove pre-installed ruby
|
17
|
+
command: |
|
18
|
+
Get-ChildItem -path 'C:\tools\' -filter Ruby* | Remove-Item -Force -Recurse
|
19
|
+
|
20
|
+
- run:
|
21
|
+
name: download and install ruby devkit
|
22
|
+
command: |
|
23
|
+
$ProgressPreference='SilentlyContinue'
|
24
|
+
|
25
|
+
$uri = 'https://api.github.com/repos/oneclick/rubyinstaller2/tags?per_page=200'
|
26
|
+
$releases = ((Invoke-WebRequest $uri) | ConvertFrom-Json).name | select-string -Pattern '<< parameters.ruby_version >>'
|
27
|
+
$target_release = (($releases | Sort-Object -Descending)[0] | Out-String).Trim()
|
28
|
+
$target_version = $target_release.Substring($target_release.Length - 7)
|
29
|
+
$download_uri = "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-$target_version/rubyinstaller-devkit-$target_version-x64.exe"
|
30
|
+
echo "Ruby Target Version Found: $target_version"
|
31
|
+
|
32
|
+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
33
|
+
Invoke-WebRequest -UseBasicParsing -uri $download_uri -OutFile C:\ruby-setup.exe
|
34
|
+
|
35
|
+
echo "Download finished, starting installation of $target_version"
|
36
|
+
C:\ruby-setup.exe /VERYSILENT /NORESTART /ALLUSERS /DIR=C:/Ruby<< parameters.ruby_version >>-x64
|
37
|
+
|
38
|
+
- run:
|
39
|
+
name: ruby diagnostics
|
40
|
+
command: |
|
41
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
42
|
+
echo "Perl Version:"
|
43
|
+
perl --version
|
44
|
+
echo "Ruby Version:"
|
45
|
+
ruby --version
|
46
|
+
echo "Gem Version:"
|
47
|
+
gem --version
|
48
|
+
|
49
|
+
- run:
|
50
|
+
name: install bundler
|
51
|
+
command: |
|
52
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
53
|
+
gem install bundler -v 2.3.26
|
54
|
+
|
55
|
+
jobs:
|
56
|
+
test_linux:
|
57
|
+
parameters:
|
58
|
+
ruby_version:
|
59
|
+
description: 'version tag for the cimg/ruby container'
|
60
|
+
type: string
|
61
|
+
|
62
|
+
machine:
|
63
|
+
image: ubuntu-2004:current
|
64
|
+
|
65
|
+
# be sure to update the ./setup_cimgruby_dev.sh if changes are made to steps below
|
66
|
+
steps:
|
67
|
+
- checkout
|
68
|
+
|
69
|
+
- run:
|
70
|
+
name: start docker-compose build environment
|
71
|
+
command: |
|
72
|
+
sudo ./test/bin/setup_volume_permissions.sh
|
73
|
+
docker-compose up -d
|
74
|
+
echo "Waiting for containers to start..."
|
75
|
+
sleep 10
|
76
|
+
environment:
|
77
|
+
RUBY_VERSION: << parameters.ruby_version >>
|
78
|
+
|
79
|
+
- run:
|
80
|
+
name: install sql prereqs
|
81
|
+
command: |
|
82
|
+
docker exec cimg_ruby bash -c 'sudo -E ./test/bin/install-mssqltools.sh'
|
83
|
+
|
84
|
+
- run:
|
85
|
+
name: setup tiny_tds test database
|
86
|
+
command: |
|
87
|
+
docker exec cimg_ruby bash -c './test/bin/setup_tinytds_db.sh'
|
88
|
+
|
89
|
+
- run:
|
90
|
+
name: bundle install gems
|
91
|
+
command: |
|
92
|
+
docker exec cimg_ruby bash -c 'bundle install'
|
93
|
+
|
94
|
+
- run:
|
95
|
+
name: Write used versions into file
|
96
|
+
command: |
|
97
|
+
docker exec cimg_ruby bash -c 'bundle exec rake ports:version_file'
|
98
|
+
|
99
|
+
- restore_cache:
|
100
|
+
name: restore ports cache
|
101
|
+
keys:
|
102
|
+
- ports-<< parameters.ruby_version >>-{{ arch }}-{{ checksum ".ports_versions" }}
|
103
|
+
- ports-<< parameters.ruby_version >>-{{ arch }}-
|
104
|
+
|
105
|
+
- run:
|
106
|
+
name: compile ports
|
107
|
+
command: |
|
108
|
+
docker exec cimg_ruby bash -c 'bundle exec rake ports'
|
109
|
+
|
110
|
+
- run:
|
111
|
+
name: build gem
|
112
|
+
command: |
|
113
|
+
docker exec cimg_ruby bash -c 'bundle exec rake build'
|
114
|
+
|
115
|
+
- run:
|
116
|
+
name: Fix permissions on ports directory
|
117
|
+
command: |
|
118
|
+
docker exec cimg_ruby bash -c 'sudo chown -R $(id -u):$(id -g) ports'
|
119
|
+
|
120
|
+
- run:
|
121
|
+
name: test gem
|
122
|
+
command: |
|
123
|
+
docker exec cimg_ruby bash -c 'bundle exec rake test'
|
124
|
+
|
125
|
+
- save_cache:
|
126
|
+
name: save ports cache
|
127
|
+
paths:
|
128
|
+
- ./ports
|
129
|
+
key: ports-<< parameters.ruby_version >>-{{ arch }}-{{ arch }}-{{ checksum ".ports_versions" }}
|
130
|
+
|
131
|
+
- store_test_results:
|
132
|
+
path: test/reports
|
133
|
+
|
134
|
+
test_windows:
|
135
|
+
parameters:
|
136
|
+
ruby_version:
|
137
|
+
description: 'version tag for rubydev environment'
|
138
|
+
type: string
|
139
|
+
|
140
|
+
executor:
|
141
|
+
name: win/server-2022
|
142
|
+
shell: powershell.exe
|
143
|
+
|
144
|
+
environment:
|
145
|
+
RAKEOPT: '-rdevkit'
|
146
|
+
TESTOPTS: '-v'
|
147
|
+
MAKE: 'make V=1 -j2'
|
148
|
+
|
149
|
+
steps:
|
150
|
+
- install-ruby-windows:
|
151
|
+
ruby_version: << parameters.ruby_version >>
|
152
|
+
|
153
|
+
- checkout
|
154
|
+
|
155
|
+
- restore_cache:
|
156
|
+
name: restore gem cache
|
157
|
+
keys:
|
158
|
+
- v1-bundle-<< parameters.ruby_version >>-{{ arch }}-{{ .Branch }}-{{ checksum "tiny_tds.gemspec" }}
|
159
|
+
- v1-bundle-<< parameters.ruby_version >>-{{ arch }}-{{ .Branch }}-
|
160
|
+
- v1-bundle-<< parameters.ruby_version >>-{{ arch }}-
|
161
|
+
|
162
|
+
- run:
|
163
|
+
name: bundle install gems
|
164
|
+
command: |
|
165
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
166
|
+
bundle install --path vendor/bundle
|
167
|
+
|
168
|
+
- save_cache:
|
169
|
+
name: save gem cache
|
170
|
+
paths:
|
171
|
+
- ./vendor/bundle
|
172
|
+
key: v1-bundle-<< parameters.ruby_version >>-{{ arch }}-{{ .Branch }}-{{ checksum "tiny_tds.gemspec" }}
|
173
|
+
|
174
|
+
- attach_workspace:
|
175
|
+
at: artifacts
|
176
|
+
|
177
|
+
- run:
|
178
|
+
name: install native gem and restore cross-compiled code from gem
|
179
|
+
command: |
|
180
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
181
|
+
$rubyArchitecture = (ruby -e 'puts RUBY_PLATFORM').Trim()
|
182
|
+
$gemVersion = (Get-Content VERSION).Trim()
|
183
|
+
|
184
|
+
gem install --local --install-dir=./tmp "artifacts/gems/tiny_tds-$gemVersion-$rubyArchitecture.gem"
|
185
|
+
|
186
|
+
# Restore precompiled code
|
187
|
+
$source = (Resolve-Path ".\tmp\gems\tiny_tds-$gemVersion-$rubyArchitecture\lib\tiny_tds").Path
|
188
|
+
$destination = (Resolve-Path ".\lib\tiny_tds").Path
|
189
|
+
Get-ChildItem $source -Recurse -Exclude "*.rb" | Copy-Item -Destination {Join-Path $destination $_.FullName.Substring($source.length)}
|
190
|
+
|
191
|
+
# Restore ports
|
192
|
+
Copy-Item -Path ".\tmp\gems\tiny_tds-$gemVersion-$rubyArchitecture\ports" -Destination "." -Recurse
|
193
|
+
|
194
|
+
- restore_cache:
|
195
|
+
name: restore mssql installation file
|
196
|
+
key: downloads-{{ checksum "test/bin/install-mssql.ps1" }}
|
197
|
+
|
198
|
+
- run:
|
199
|
+
name: setup mssql
|
200
|
+
command: |
|
201
|
+
.\test\bin\install-mssql.ps1
|
202
|
+
|
203
|
+
- save_cache:
|
204
|
+
name: save downloads cache
|
205
|
+
paths:
|
206
|
+
- C:\Downloads
|
207
|
+
key: downloads-{{ checksum "test/bin/install-mssql.ps1" }}
|
208
|
+
|
209
|
+
- run:
|
210
|
+
name: install toxiproxy-server
|
211
|
+
command: |
|
212
|
+
choco install toxiproxy-server --version=2.5.0 -y
|
213
|
+
Start-Process toxiproxy-server
|
214
|
+
|
215
|
+
- run:
|
216
|
+
name: test gem
|
217
|
+
command: |
|
218
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
219
|
+
bundle exec rake test
|
220
|
+
environment:
|
221
|
+
TOXIPROXY_HOST: "localhost"
|
222
|
+
|
223
|
+
- store_test_results:
|
224
|
+
path: test/reports
|
225
|
+
|
226
|
+
- run:
|
227
|
+
name: Rename gem to a consistent name to store artifact
|
228
|
+
command: |
|
229
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
230
|
+
$rubyArchitecture = (ruby -e 'puts RUBY_PLATFORM').Trim()
|
231
|
+
$gemVersion = (Get-Content VERSION).Trim()
|
232
|
+
|
233
|
+
New-Item -Path . -Name "tested_artifact" -ItemType "directory"
|
234
|
+
Move-Item "artifacts/gems/tiny_tds-$gemVersion-$rubyArchitecture.gem" "tested_artifact"
|
235
|
+
|
236
|
+
- store_artifacts:
|
237
|
+
path: tested_artifact
|
238
|
+
|
239
|
+
cross_compile_gem:
|
240
|
+
parameters:
|
241
|
+
platform:
|
242
|
+
description: "Platform to compile the gem resources"
|
243
|
+
type: string
|
244
|
+
|
245
|
+
docker:
|
246
|
+
- image: "ghcr.io/rake-compiler/rake-compiler-dock-image:1.3.0-mri-<< parameters.platform >>"
|
247
|
+
|
248
|
+
steps:
|
249
|
+
- checkout
|
250
|
+
|
251
|
+
- run:
|
252
|
+
name: bundle install gems
|
253
|
+
command: |
|
254
|
+
bundle install
|
255
|
+
|
256
|
+
- run:
|
257
|
+
name: Write used versions for ports into file
|
258
|
+
command: |
|
259
|
+
rake ports:version_file[<< parameters.platform >>]
|
260
|
+
|
261
|
+
- restore_cache:
|
262
|
+
name: restore ports cache
|
263
|
+
keys:
|
264
|
+
- ports-win-{{ arch }}-{{ checksum ".ports_versions" }}
|
265
|
+
- ports-win-{{ arch }}-
|
266
|
+
|
267
|
+
- run:
|
268
|
+
name: Build gem
|
269
|
+
command: |
|
270
|
+
rake gem:for_platform[<< parameters.platform >>]
|
271
|
+
|
272
|
+
- run:
|
273
|
+
name: Move gems into separate directory before caching
|
274
|
+
command: |
|
275
|
+
mkdir -p artifacts-<< parameters.platform >>/gems
|
276
|
+
mv pkg/*.gem artifacts-<< parameters.platform >>/gems
|
277
|
+
|
278
|
+
- run:
|
279
|
+
name: Remove non-native gem to avoid conflict in workspace
|
280
|
+
command: |
|
281
|
+
gemVersion=$(cat VERSION | tr -d "[:space:]")
|
282
|
+
rm -rf artifacts-<< parameters.platform >>/gems/tiny_tds-$gemVersion.gem
|
283
|
+
|
284
|
+
- store_artifacts:
|
285
|
+
path: artifacts-<< parameters.platform >>/gems
|
286
|
+
|
287
|
+
- save_cache:
|
288
|
+
name: save ports cache
|
289
|
+
paths:
|
290
|
+
- ./ports
|
291
|
+
key: ports-win-{{ arch }}-{{ checksum ".ports_versions" }}
|
292
|
+
|
293
|
+
- persist_to_workspace:
|
294
|
+
name: save gems into workspace
|
295
|
+
root: artifacts-<< parameters.platform >>
|
296
|
+
paths:
|
297
|
+
- gems
|
298
|
+
|
299
|
+
install_windows:
|
300
|
+
parameters:
|
301
|
+
ruby_version:
|
302
|
+
description: 'version tag for rubydev environment'
|
303
|
+
type: string
|
304
|
+
|
305
|
+
executor:
|
306
|
+
name: win/server-2022
|
307
|
+
shell: powershell.exe
|
308
|
+
|
309
|
+
environment:
|
310
|
+
RAKEOPT: '-rdevkit'
|
311
|
+
TESTOPTS: '-v'
|
312
|
+
MAKE: 'make V=1 -j2'
|
313
|
+
|
314
|
+
steps:
|
315
|
+
- install-ruby-windows:
|
316
|
+
ruby_version: << parameters.ruby_version >>
|
317
|
+
|
318
|
+
- run:
|
319
|
+
name: Ensure msys2 installation is complete
|
320
|
+
command: |
|
321
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
322
|
+
|
323
|
+
# on older Ruby version, the msys version shipped with RubyInstaller is quite old
|
324
|
+
# and RubyInstaller will be unable to install anything because of outdated keys
|
325
|
+
# With this those commands, we force to get a new set of keys
|
326
|
+
# see https://www.msys2.org/docs/updating/#potential-issues
|
327
|
+
ridk exec pacman-key --init
|
328
|
+
ridk exec pacman-key --refresh-keys
|
329
|
+
ridk install 1 2 3
|
330
|
+
|
331
|
+
- checkout
|
332
|
+
|
333
|
+
- restore_cache:
|
334
|
+
name: restore gem cache
|
335
|
+
keys:
|
336
|
+
- v1-bundle-<< parameters.ruby_version >>-{{ arch }}-{{ .Branch }}-{{ checksum "tiny_tds.gemspec" }}
|
337
|
+
- v1-bundle-<< parameters.ruby_version >>-{{ arch }}-{{ .Branch }}-
|
338
|
+
- v1-bundle-<< parameters.ruby_version >>-{{ arch }}-
|
339
|
+
|
340
|
+
- run:
|
341
|
+
name: bundle install gems
|
342
|
+
command: |
|
343
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
344
|
+
bundle install --path vendor/bundle
|
345
|
+
|
346
|
+
- save_cache:
|
347
|
+
name: save gem cache
|
348
|
+
paths:
|
349
|
+
- ./vendor/bundle
|
350
|
+
key: v1-bundle-<< parameters.ruby_version >>-{{ arch }}-{{ .Branch }}-{{ checksum "tiny_tds.gemspec" }}
|
351
|
+
|
352
|
+
- run:
|
353
|
+
name: build gem
|
354
|
+
command: |
|
355
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
356
|
+
gem build tiny_tds.gemspec
|
357
|
+
|
358
|
+
- run:
|
359
|
+
name: Install gem
|
360
|
+
command: |
|
361
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
362
|
+
$gemVersion = (Get-Content VERSION).Trim()
|
363
|
+
gem install --local "tiny_tds-$gemVersion.gem"
|
364
|
+
|
365
|
+
- run:
|
366
|
+
name: Check if gem loads correctly
|
367
|
+
command: |
|
368
|
+
$Env:PATH = "C:\\Ruby<< parameters.ruby_version >>-x64\\bin;$Env:PATH"
|
369
|
+
ruby -e "require 'tiny_tds'; puts TinyTds::Gem.root_path"
|
370
|
+
exit $LASTEXITCODE
|
371
|
+
|
372
|
+
workflows:
|
373
|
+
test_supported_ruby_versions:
|
374
|
+
jobs:
|
375
|
+
- cross_compile_gem:
|
376
|
+
matrix:
|
377
|
+
parameters:
|
378
|
+
platform:
|
379
|
+
- "x86-mingw32"
|
380
|
+
- "x64-mingw32"
|
381
|
+
- "x64-mingw-ucrt"
|
382
|
+
- test_windows:
|
383
|
+
requires:
|
384
|
+
- cross_compile_gem
|
385
|
+
matrix: &ruby_versions
|
386
|
+
parameters:
|
387
|
+
ruby_version:
|
388
|
+
- '2.4'
|
389
|
+
- '2.5'
|
390
|
+
- '2.6'
|
391
|
+
- '2.7'
|
392
|
+
- '3.0'
|
393
|
+
- '3.1'
|
394
|
+
- '3.2'
|
395
|
+
- test_linux:
|
396
|
+
matrix: *ruby_versions
|
397
|
+
|
398
|
+
- install_windows:
|
399
|
+
matrix:
|
400
|
+
parameters:
|
401
|
+
ruby_version:
|
402
|
+
- '2.5'
|
403
|
+
- '2.6'
|
404
|
+
- '2.7'
|
405
|
+
- '3.0'
|
406
|
+
- '3.1'
|
407
|
+
- '3.2'
|
data/.codeclimate.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
engines:
|
2
|
+
bundler-audit:
|
3
|
+
enabled: true
|
4
|
+
duplication:
|
5
|
+
enabled: true
|
6
|
+
config:
|
7
|
+
languages:
|
8
|
+
- ruby
|
9
|
+
fixme:
|
10
|
+
enabled: true
|
11
|
+
rubocop:
|
12
|
+
enabled: true
|
13
|
+
ratings:
|
14
|
+
paths:
|
15
|
+
- "**.rb"
|
16
|
+
exclude_paths:
|
17
|
+
- ext/
|
18
|
+
- ports/
|
19
|
+
- test/
|
20
|
+
- tmp/
|
data/.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.diff eol=lf
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Makefile
|
2
|
+
*.dSYM
|
3
|
+
*.o
|
4
|
+
*.bundle
|
5
|
+
*.so
|
6
|
+
*.a
|
7
|
+
*.rbc
|
8
|
+
mkmf.log
|
9
|
+
pkg/
|
10
|
+
tmp
|
11
|
+
vendor
|
12
|
+
lib/tiny_tds/tiny_tds.rb
|
13
|
+
.rvmrc
|
14
|
+
.rbenv-version
|
15
|
+
Gemfile.lock
|
16
|
+
misc
|
17
|
+
*.gem
|
18
|
+
/exe/*
|
19
|
+
/ports/*
|
20
|
+
!/ports/patches/
|
21
|
+
test/reports
|
22
|
+
.ports_versions
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
|
2
|
+
AllCops:
|
3
|
+
Include:
|
4
|
+
- '**/Rakefile'
|
5
|
+
Exclude:
|
6
|
+
- 'ext/**/*'
|
7
|
+
- 'ports/**/*'
|
8
|
+
- 'test/**/*'
|
9
|
+
- 'tmp/**/*'
|
10
|
+
|
11
|
+
# Redefined
|
12
|
+
|
13
|
+
Metrics/LineLength:
|
14
|
+
Max: 120
|
15
|
+
|
16
|
+
Metrics/ClassLength:
|
17
|
+
Max: 200
|
18
|
+
|
19
|
+
# Disabled
|
20
|
+
|
21
|
+
Style/Documentation:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
Style/EmptyLinesAroundClassBody:
|
25
|
+
Enabled: false
|
26
|
+
|
27
|
+
Style/EmptyLinesAroundModuleBody:
|
28
|
+
Enabled: false
|
29
|
+
|
30
|
+
Style/EmptyLinesAroundBlockBody:
|
31
|
+
Enabled: false
|