db_meta 0.7.1 → 0.8.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/.github/dependabot.yml +2 -2
- data/.github/workflows/cd.yml +7 -7
- data/.github/workflows/ci.yml +8 -8
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +5 -0
- data/db_meta.gemspec +1 -1
- data/lib/db_meta/oracle/helper.rb +1 -1
- data/lib/db_meta/version.rb +1 -1
- metadata +5 -6
- data/Gemfile.lock +0 -77
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4546fc8de842c8d6c6e9486176a8bb7353c36f3656627cca0f39653f7480b83
|
|
4
|
+
data.tar.gz: e6e7f08bf16830eaa1064cf157d9f401c9fe2f9f2a0cb33cc4ae215a451a9c91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 449476411fada6626c0d402573b2cfbed87b6f10ed8cb51095065d9b260de198caedd60e1b4d70c5c64d4c73d1ac242ccdcb2c32ff39a78eaf81498c23d777d5
|
|
7
|
+
data.tar.gz: 83ab401bafd2b876e2b30a08bc6f4c051f7ff372a5b85b4adabbf63cbebf910b49cfd0a2d03634c2d734f620c0a99bec924b901dd57985a4388b003ba0ca46f1
|
data/.github/dependabot.yml
CHANGED
|
@@ -5,7 +5,7 @@ updates:
|
|
|
5
5
|
schedule:
|
|
6
6
|
interval: "weekly"
|
|
7
7
|
day: "saturday"
|
|
8
|
-
time: "04:
|
|
8
|
+
time: "04:05"
|
|
9
9
|
timezone: "Europe/Zurich"
|
|
10
10
|
|
|
11
11
|
- package-ecosystem: "github-actions"
|
|
@@ -13,5 +13,5 @@ updates:
|
|
|
13
13
|
schedule:
|
|
14
14
|
interval: "weekly"
|
|
15
15
|
day: "saturday"
|
|
16
|
-
time: "04:
|
|
16
|
+
time: "04:05"
|
|
17
17
|
timezone: "Europe/Zurich"
|
data/.github/workflows/cd.yml
CHANGED
|
@@ -8,27 +8,27 @@ jobs:
|
|
|
8
8
|
build:
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
env:
|
|
11
|
-
ORACLE_HOME: /opt/
|
|
12
|
-
LD_LIBRARY_PATH: /opt/
|
|
13
|
-
OCI_DIR: /opt/
|
|
11
|
+
ORACLE_HOME: /opt/instantclient_21_12
|
|
12
|
+
LD_LIBRARY_PATH: /opt/instantclient_21_12
|
|
13
|
+
OCI_DIR: /opt/instantclient_21_12
|
|
14
14
|
NLS_LANG: AMERICAN_AMERICA.AL32UTF8
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
17
|
- name: Checkout current code
|
|
18
|
-
uses: actions/checkout@
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
19
|
|
|
20
20
|
- name: Install Oracle instant client
|
|
21
21
|
run: |
|
|
22
22
|
mkdir -p /opt && cd /opt
|
|
23
|
-
curl https://download.oracle.com/otn_software/linux/instantclient/
|
|
24
|
-
curl https://download.oracle.com/otn_software/linux/instantclient/
|
|
23
|
+
curl https://download.oracle.com/otn_software/linux/instantclient/2112000/instantclient-basic-linux.x64-21.12.0.0.0dbru.zip --output instantclient.zip
|
|
24
|
+
curl https://download.oracle.com/otn_software/linux/instantclient/2112000/instantclient-sdk-linux.x64-21.12.0.0.0dbru.zip --output instantclient_sdk.zip
|
|
25
25
|
unzip instantclient.zip
|
|
26
26
|
unzip instantclient_sdk.zip
|
|
27
27
|
|
|
28
28
|
- name: Set up Ruby
|
|
29
29
|
uses: ruby/setup-ruby@v1
|
|
30
30
|
with:
|
|
31
|
-
ruby-version: '3.
|
|
31
|
+
ruby-version: '3.3'
|
|
32
32
|
bundler: latest
|
|
33
33
|
bundler-cache: true
|
|
34
34
|
cache-version: 1
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -10,7 +10,7 @@ on:
|
|
|
10
10
|
- "*"
|
|
11
11
|
|
|
12
12
|
schedule:
|
|
13
|
-
- cron: 0 2 * *
|
|
13
|
+
- cron: 0 2 * * 3,6
|
|
14
14
|
|
|
15
15
|
# Allows you to run this workflow manually from the Actions tab
|
|
16
16
|
workflow_dispatch:
|
|
@@ -20,25 +20,25 @@ jobs:
|
|
|
20
20
|
runs-on: ubuntu-latest
|
|
21
21
|
env:
|
|
22
22
|
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
23
|
-
ORACLE_HOME: /opt/
|
|
24
|
-
LD_LIBRARY_PATH: /opt/
|
|
25
|
-
OCI_DIR: /opt/
|
|
23
|
+
ORACLE_HOME: /opt/instantclient_21_12
|
|
24
|
+
LD_LIBRARY_PATH: /opt/instantclient_21_12
|
|
25
|
+
OCI_DIR: /opt/instantclient_21_12
|
|
26
26
|
NLS_LANG: AMERICAN_AMERICA.AL32UTF8
|
|
27
27
|
|
|
28
28
|
strategy:
|
|
29
29
|
fail-fast: false
|
|
30
30
|
matrix:
|
|
31
|
-
ruby: [ '3.
|
|
31
|
+
ruby: [ '3.3', '3.2', '3.1', '3.0']
|
|
32
32
|
|
|
33
33
|
name: Ruby ${{ matrix.ruby }}
|
|
34
34
|
steps:
|
|
35
|
-
- uses: actions/checkout@
|
|
35
|
+
- uses: actions/checkout@v4
|
|
36
36
|
|
|
37
37
|
- name: Install Oracle instant client
|
|
38
38
|
run: |
|
|
39
39
|
mkdir -p /opt && cd /opt
|
|
40
|
-
curl https://download.oracle.com/otn_software/linux/instantclient/
|
|
41
|
-
curl https://download.oracle.com/otn_software/linux/instantclient/
|
|
40
|
+
curl https://download.oracle.com/otn_software/linux/instantclient/2112000/instantclient-basic-linux.x64-21.12.0.0.0dbru.zip --output instantclient.zip
|
|
41
|
+
curl https://download.oracle.com/otn_software/linux/instantclient/2112000/instantclient-sdk-linux.x64-21.12.0.0.0dbru.zip --output instantclient_sdk.zip
|
|
42
42
|
unzip instantclient.zip
|
|
43
43
|
unzip instantclient_sdk.zip
|
|
44
44
|
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.3.0
|
data/.tool-versions
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby 3.
|
|
1
|
+
ruby 3.3.0
|
data/CHANGELOG.md
CHANGED
data/db_meta.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 2.3"
|
|
22
22
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
23
23
|
spec.add_development_dependency "rspec", "~> 3.12"
|
|
24
|
-
spec.add_development_dependency "standard", "~> 1.
|
|
24
|
+
spec.add_development_dependency "standard", "~> 1.31"
|
|
25
25
|
spec.add_development_dependency "simplecov", "~> 0.21"
|
|
26
26
|
|
|
27
27
|
spec.add_dependency "ruby-oci8", "~> 2.2"
|
data/lib/db_meta/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: db_meta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -58,14 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '1.
|
|
61
|
+
version: '1.31'
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '1.
|
|
68
|
+
version: '1.31'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: simplecov
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -110,7 +110,6 @@ files:
|
|
|
110
110
|
- ".tool-versions"
|
|
111
111
|
- CHANGELOG.md
|
|
112
112
|
- Gemfile
|
|
113
|
-
- Gemfile.lock
|
|
114
113
|
- LICENSE
|
|
115
114
|
- README.md
|
|
116
115
|
- Rakefile
|
|
@@ -174,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
174
173
|
- !ruby/object:Gem::Version
|
|
175
174
|
version: '0'
|
|
176
175
|
requirements: []
|
|
177
|
-
rubygems_version: 3.
|
|
176
|
+
rubygems_version: 3.5.3
|
|
178
177
|
signing_key:
|
|
179
178
|
specification_version: 4
|
|
180
179
|
summary: Database meta and core data extraction
|
data/Gemfile.lock
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
db_meta (0.7.1)
|
|
5
|
-
ruby-oci8 (~> 2.2)
|
|
6
|
-
|
|
7
|
-
GEM
|
|
8
|
-
remote: https://rubygems.org/
|
|
9
|
-
specs:
|
|
10
|
-
ast (2.4.2)
|
|
11
|
-
diff-lcs (1.5.0)
|
|
12
|
-
docile (1.4.0)
|
|
13
|
-
json (2.6.3)
|
|
14
|
-
language_server-protocol (3.17.0.2)
|
|
15
|
-
parallel (1.22.1)
|
|
16
|
-
parser (3.1.3.0)
|
|
17
|
-
ast (~> 2.4.1)
|
|
18
|
-
rainbow (3.1.1)
|
|
19
|
-
rake (13.0.6)
|
|
20
|
-
regexp_parser (2.6.1)
|
|
21
|
-
rexml (3.2.5)
|
|
22
|
-
rspec (3.12.0)
|
|
23
|
-
rspec-core (~> 3.12.0)
|
|
24
|
-
rspec-expectations (~> 3.12.0)
|
|
25
|
-
rspec-mocks (~> 3.12.0)
|
|
26
|
-
rspec-core (3.12.0)
|
|
27
|
-
rspec-support (~> 3.12.0)
|
|
28
|
-
rspec-expectations (3.12.1)
|
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
30
|
-
rspec-support (~> 3.12.0)
|
|
31
|
-
rspec-mocks (3.12.1)
|
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
33
|
-
rspec-support (~> 3.12.0)
|
|
34
|
-
rspec-support (3.12.0)
|
|
35
|
-
rubocop (1.40.0)
|
|
36
|
-
json (~> 2.3)
|
|
37
|
-
parallel (~> 1.10)
|
|
38
|
-
parser (>= 3.1.2.1)
|
|
39
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
40
|
-
regexp_parser (>= 1.8, < 3.0)
|
|
41
|
-
rexml (>= 3.2.5, < 4.0)
|
|
42
|
-
rubocop-ast (>= 1.23.0, < 2.0)
|
|
43
|
-
ruby-progressbar (~> 1.7)
|
|
44
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
|
45
|
-
rubocop-ast (1.24.1)
|
|
46
|
-
parser (>= 3.1.1.0)
|
|
47
|
-
rubocop-performance (1.15.1)
|
|
48
|
-
rubocop (>= 1.7.0, < 2.0)
|
|
49
|
-
rubocop-ast (>= 0.4.0)
|
|
50
|
-
ruby-oci8 (2.2.12)
|
|
51
|
-
ruby-progressbar (1.11.0)
|
|
52
|
-
simplecov (0.22.0)
|
|
53
|
-
docile (~> 1.1)
|
|
54
|
-
simplecov-html (~> 0.11)
|
|
55
|
-
simplecov_json_formatter (~> 0.1)
|
|
56
|
-
simplecov-html (0.12.3)
|
|
57
|
-
simplecov_json_formatter (0.1.4)
|
|
58
|
-
standard (1.20.0)
|
|
59
|
-
language_server-protocol (~> 3.17.0.2)
|
|
60
|
-
rubocop (= 1.40.0)
|
|
61
|
-
rubocop-performance (= 1.15.1)
|
|
62
|
-
unicode-display_width (2.3.0)
|
|
63
|
-
|
|
64
|
-
PLATFORMS
|
|
65
|
-
ruby
|
|
66
|
-
x86_64-darwin-18
|
|
67
|
-
|
|
68
|
-
DEPENDENCIES
|
|
69
|
-
bundler (~> 2.3)
|
|
70
|
-
db_meta!
|
|
71
|
-
rake (~> 13.0)
|
|
72
|
-
rspec (~> 3.12)
|
|
73
|
-
simplecov (~> 0.21)
|
|
74
|
-
standard (~> 1.18)
|
|
75
|
-
|
|
76
|
-
BUNDLED WITH
|
|
77
|
-
2.4.1
|