db_meta 0.7.1 → 0.9.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: 042e4a1dc734902721b31535a872b74c28b6b26aafc342311065a1dfa74de66c
4
+ data.tar.gz: 1033deae1228f8b17ff2239af017105e5f76f1459bfbba513d5cb2b5d94582fd
5
5
  SHA512:
6
- metadata.gz: 183b9bc7dfc4cba5d1c6e533974dc252e482e55293e6153a7268b37f672b35f05dd6feada52f1e89929bc890ab77366173a75eb998477f4356a79710bbe24d43
7
- data.tar.gz: bcee67a352290dc7b071f5d6cc3df567758da8fad12817e339fc497e73151e154340c400a19cee92e2ca39c4739f781394a2fcd1b0cfa0d7b35baf8fc4f3ec24
6
+ metadata.gz: '06244528c20e6535e136d0f599f096ce71b1b6d5be69151e4b4973a20ac358fb06fcdf582dbdb2467ca411efca968ed792bce1747faed7f197396263c2010e82'
7
+ data.tar.gz: 2ebd9bdf65fb82a1183271fbf76d086910993cbef78b6d11e662a67751c6c9ee0d8422a2617f00878c9682bb43aa2dd7cd63e49fb58bcf82cd79bad7e6943def
@@ -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/.gitignore CHANGED
@@ -36,3 +36,5 @@ build/
36
36
  .rvmrc
37
37
 
38
38
  examples/
39
+
40
+ Gemfile.lock
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,13 @@
1
+ ## [0.9.0] - 2024-02-21
2
+
3
+ ### Changed
4
+ - Update depenencies
5
+
6
+ ## [0.8.0] - 2024-01-12
7
+
8
+ ### Changed
9
+ - Update depenencies
10
+
1
11
  ## [0.7.1] - 2022-12-31
2
12
 
3
13
  ### Changed
data/README.md CHANGED
@@ -50,9 +50,11 @@ meta.extract
50
50
 
51
51
  Currently supported and tested ruby versions are:
52
52
 
53
+ - 3.3
54
+ - 3.2
53
55
  - 3.1
54
- - 3.0
55
- - 2.7
56
+ - 3.0 (EOL 31 Mar 2024)
57
+ - 2.7 (EOL 31 Mar 2023)
56
58
  - 2.6 (EOL 31 Mar 2022)
57
59
 
58
60
  ## Planned Features
data/db_meta.gemspec CHANGED
@@ -19,9 +19,9 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_development_dependency "bundler", "~> 2.3"
22
- spec.add_development_dependency "rake", "~> 13.0"
23
- spec.add_development_dependency "rspec", "~> 3.12"
24
- spec.add_development_dependency "standard", "~> 1.18"
22
+ spec.add_development_dependency "rake", "~> 13.1"
23
+ spec.add_development_dependency "rspec", "~> 3.13"
24
+ spec.add_development_dependency "standard", "~> 1.34"
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.9.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.9.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-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -30,42 +30,42 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '13.0'
33
+ version: '13.1'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '13.0'
40
+ version: '13.1'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '3.12'
47
+ version: '3.13'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '3.12'
54
+ version: '3.13'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: standard
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.18'
61
+ version: '1.34'
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.34'
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