db_meta 0.7.1 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca18fcb213fa155ddad8394f2bbe8716a36a5c692bad3339d794e31621057915
4
- data.tar.gz: 1ef39d6b703b1eaa2b7d2d927e4a6cadf5de7a473597bdee18389735d0b837b5
3
+ metadata.gz: d4546fc8de842c8d6c6e9486176a8bb7353c36f3656627cca0f39653f7480b83
4
+ data.tar.gz: e6e7f08bf16830eaa1064cf157d9f401c9fe2f9f2a0cb33cc4ae215a451a9c91
5
5
  SHA512:
6
- metadata.gz: 183b9bc7dfc4cba5d1c6e533974dc252e482e55293e6153a7268b37f672b35f05dd6feada52f1e89929bc890ab77366173a75eb998477f4356a79710bbe24d43
7
- data.tar.gz: bcee67a352290dc7b071f5d6cc3df567758da8fad12817e339fc497e73151e154340c400a19cee92e2ca39c4739f781394a2fcd1b0cfa0d7b35baf8fc4f3ec24
6
+ metadata.gz: 449476411fada6626c0d402573b2cfbed87b6f10ed8cb51095065d9b260de198caedd60e1b4d70c5c64d4c73d1ac242ccdcb2c32ff39a78eaf81498c23d777d5
7
+ data.tar.gz: 83ab401bafd2b876e2b30a08bc6f4c051f7ff372a5b85b4adabbf63cbebf910b49cfd0a2d03634c2d734f620c0a99bec924b901dd57985a4388b003ba0ca46f1
@@ -5,7 +5,7 @@ updates:
5
5
  schedule:
6
6
  interval: "weekly"
7
7
  day: "saturday"
8
- time: "04:00"
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:00"
16
+ time: "04:05"
17
17
  timezone: "Europe/Zurich"
@@ -8,27 +8,27 @@ jobs:
8
8
  build:
9
9
  runs-on: ubuntu-latest
10
10
  env:
11
- ORACLE_HOME: /opt/instantclient_21_7
12
- LD_LIBRARY_PATH: /opt/instantclient_21_7
13
- OCI_DIR: /opt/instantclient_21_7
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@v3
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/217000/instantclient-basic-linux.x64-21.7.0.0.0dbru.zip --output instantclient.zip
24
- curl https://download.oracle.com/otn_software/linux/instantclient/217000/instantclient-sdk-linux.x64-21.7.0.0.0dbru.zip --output instantclient_sdk.zip
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.2'
31
+ ruby-version: '3.3'
32
32
  bundler: latest
33
33
  bundler-cache: true
34
34
  cache-version: 1
@@ -10,7 +10,7 @@ on:
10
10
  - "*"
11
11
 
12
12
  schedule:
13
- - cron: 0 2 * * 1,3,5,6
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/instantclient_21_7
24
- LD_LIBRARY_PATH: /opt/instantclient_21_7
25
- OCI_DIR: /opt/instantclient_21_7
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.2', '3.1', '3.0', '2.7', '2.6']
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@v3
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/217000/instantclient-basic-linux.x64-21.7.0.0.0dbru.zip --output instantclient.zip
41
- curl https://download.oracle.com/otn_software/linux/instantclient/217000/instantclient-sdk-linux.x64-21.7.0.0.0dbru.zip --output instantclient_sdk.zip
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.2.0
1
+ 3.3.0
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.2.0
1
+ ruby 3.3.0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [0.8.0] - 2024-01-12
2
+
3
+ ### Changed
4
+ - Update depenencies
5
+
1
6
  ## [0.7.1] - 2022-12-31
2
7
 
3
8
  ### 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.18"
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"
@@ -26,7 +26,7 @@ module DbMeta
26
26
 
27
27
  def pluralize(n, singular, plural = nil)
28
28
  return singular if n == 1
29
- (plural || (singular + "s"))
29
+ plural || (singular + "s")
30
30
  end
31
31
  end
32
32
  end
@@ -1,3 +1,3 @@
1
1
  module DbMeta
2
- VERSION = "0.7.1"
2
+ VERSION = "0.8.0"
3
3
  end
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.7.1
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: 2022-12-31 00:00:00.000000000 Z
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.18'
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.18'
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.4.1
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