db_meta 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -1
- data/.github/workflows/cd.yml +7 -7
- data/.github/workflows/ci.yml +8 -8
- data/.ruby-version +1 -1
- data/.tool-versions +1 -0
- data/CHANGELOG.md +10 -1
- data/db_meta.gemspec +1 -1
- data/lib/db_meta/oracle/helper.rb +1 -1
- data/lib/db_meta/version.rb +1 -1
- metadata +6 -6
- data/Gemfile.lock +0 -75
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,5 +5,13 @@ updates:
|
|
5
5
|
schedule:
|
6
6
|
interval: "weekly"
|
7
7
|
day: "saturday"
|
8
|
-
time: "04:
|
8
|
+
time: "04:05"
|
9
|
+
timezone: "Europe/Zurich"
|
10
|
+
|
11
|
+
- package-ecosystem: "github-actions"
|
12
|
+
directory: "/"
|
13
|
+
schedule:
|
14
|
+
interval: "weekly"
|
15
|
+
day: "saturday"
|
16
|
+
time: "04:05"
|
9
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
|
-
|
1
|
+
3.3.0
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.3.0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## [0.8.0] - 2024-01-12
|
2
|
+
|
3
|
+
### Changed
|
4
|
+
- Update depenencies
|
5
|
+
|
6
|
+
## [0.7.1] - 2022-12-31
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
- Update depenencies
|
10
|
+
|
1
11
|
## [0.7.0] - 2022-11-20
|
2
12
|
|
3
13
|
### Added
|
@@ -6,7 +16,6 @@
|
|
6
16
|
- Use Dependabot to keep dependencies up to date
|
7
17
|
- Use test coverage
|
8
18
|
- Have more rspec tests
|
9
|
-
- Update dependencies
|
10
19
|
|
11
20
|
### Changed
|
12
21
|
- Remove travis integration
|
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
|
@@ -107,9 +107,9 @@ files:
|
|
107
107
|
- ".gitignore"
|
108
108
|
- ".rspec"
|
109
109
|
- ".ruby-version"
|
110
|
+
- ".tool-versions"
|
110
111
|
- CHANGELOG.md
|
111
112
|
- Gemfile
|
112
|
-
- Gemfile.lock
|
113
113
|
- LICENSE
|
114
114
|
- README.md
|
115
115
|
- Rakefile
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '0'
|
175
175
|
requirements: []
|
176
|
-
rubygems_version: 3.3
|
176
|
+
rubygems_version: 3.5.3
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Database meta and core data extraction
|
data/Gemfile.lock
DELETED
@@ -1,75 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
db_meta (0.7.0)
|
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.2)
|
14
|
-
parallel (1.22.1)
|
15
|
-
parser (3.1.2.1)
|
16
|
-
ast (~> 2.4.1)
|
17
|
-
rainbow (3.1.1)
|
18
|
-
rake (13.0.6)
|
19
|
-
regexp_parser (2.6.1)
|
20
|
-
rexml (3.2.5)
|
21
|
-
rspec (3.12.0)
|
22
|
-
rspec-core (~> 3.12.0)
|
23
|
-
rspec-expectations (~> 3.12.0)
|
24
|
-
rspec-mocks (~> 3.12.0)
|
25
|
-
rspec-core (3.12.0)
|
26
|
-
rspec-support (~> 3.12.0)
|
27
|
-
rspec-expectations (3.12.0)
|
28
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
29
|
-
rspec-support (~> 3.12.0)
|
30
|
-
rspec-mocks (3.12.0)
|
31
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
32
|
-
rspec-support (~> 3.12.0)
|
33
|
-
rspec-support (3.12.0)
|
34
|
-
rubocop (1.39.0)
|
35
|
-
json (~> 2.3)
|
36
|
-
parallel (~> 1.10)
|
37
|
-
parser (>= 3.1.2.1)
|
38
|
-
rainbow (>= 2.2.2, < 4.0)
|
39
|
-
regexp_parser (>= 1.8, < 3.0)
|
40
|
-
rexml (>= 3.2.5, < 4.0)
|
41
|
-
rubocop-ast (>= 1.23.0, < 2.0)
|
42
|
-
ruby-progressbar (~> 1.7)
|
43
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
44
|
-
rubocop-ast (1.23.0)
|
45
|
-
parser (>= 3.1.1.0)
|
46
|
-
rubocop-performance (1.15.0)
|
47
|
-
rubocop (>= 1.7.0, < 2.0)
|
48
|
-
rubocop-ast (>= 0.4.0)
|
49
|
-
ruby-oci8 (2.2.11)
|
50
|
-
ruby-progressbar (1.11.0)
|
51
|
-
simplecov (0.21.2)
|
52
|
-
docile (~> 1.1)
|
53
|
-
simplecov-html (~> 0.11)
|
54
|
-
simplecov_json_formatter (~> 0.1)
|
55
|
-
simplecov-html (0.12.3)
|
56
|
-
simplecov_json_formatter (0.1.4)
|
57
|
-
standard (1.18.0)
|
58
|
-
rubocop (= 1.39.0)
|
59
|
-
rubocop-performance (= 1.15.0)
|
60
|
-
unicode-display_width (2.3.0)
|
61
|
-
|
62
|
-
PLATFORMS
|
63
|
-
ruby
|
64
|
-
x86_64-darwin-18
|
65
|
-
|
66
|
-
DEPENDENCIES
|
67
|
-
bundler (~> 2.3)
|
68
|
-
db_meta!
|
69
|
-
rake (~> 13.0)
|
70
|
-
rspec (~> 3.12)
|
71
|
-
simplecov (~> 0.21)
|
72
|
-
standard (~> 1.18)
|
73
|
-
|
74
|
-
BUNDLED WITH
|
75
|
-
2.3.19
|