table_saw 2.8.1 → 2.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47ac846bd63f95c2ab738a6de5bb6011f85a201bdbf5e2011435771504caf68f
4
- data.tar.gz: d2626da1b76f1b2ade2dee2d008d99765dccdac332f33b95336a231bea794782
3
+ metadata.gz: 73052f9f389e923a44a30245537349bf20aeccb941b6c9a737cd724429d99816
4
+ data.tar.gz: 46a3903eaf79023dd986c0977fbe330ee3bebada1aada3da149ce7d59d3d4a36
5
5
  SHA512:
6
- metadata.gz: c7f3242fd4617ca2e0d4a7f498fcfa59efcf62368e2c0691d82e9d6f9b75e9907ca7312d2a171f3559227e2738c1d2c45074fd272d52227780848201cb862655
7
- data.tar.gz: ccebba52760f172c53186766586267e52050650e117d0509a91416fee74b2096d90a85b60bb240673c1738437575174e337d43d34d19b6ee54c358fac8a768de
6
+ metadata.gz: 10511fdee69e7277992eed0bd5d7566ed880c1c33f24470f056fb470eba1ec2b808adbe3d88a65ecc9183bb378eab1cc6114f04f01ed6a43d4389f5dc7a474b8
7
+ data.tar.gz: 21fd89f55177bc4d44a1061d6336689dd0e330950e647d3e85bf9c0e967e18eed377639cca9cf4460b3402ba400b9b2ea81cb416b8accaa8b52a36d8babcf520
@@ -10,11 +10,12 @@ jobs:
10
10
  strategy:
11
11
  matrix:
12
12
  ruby:
13
- - 2.6.x
14
- - 2.7.x
13
+ - '2.6.6'
14
+ - '2.7.2'
15
+ - '3.0.0'
15
16
  activerecord:
16
- - 6.0.0
17
- - 6.1.0
17
+ - '6.0.0'
18
+ - '6.1.0'
18
19
 
19
20
  env:
20
21
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile
@@ -35,29 +36,17 @@ jobs:
35
36
  - uses: actions/checkout@v2
36
37
 
37
38
  - name: Set up Ruby
38
- uses: actions/setup-ruby@v1
39
+ uses: ruby/setup-ruby@v1
39
40
  with:
40
41
  ruby-version: ${{ matrix.ruby }}
41
-
42
- - uses: actions/cache@v1
43
- with:
44
- path: vendor/bundle
45
- key: ${{ runner.os }}-gems-${{ hashFiles(format('gemfiles/activerecord_{0}.gemfile.lock', matrix.activerecord)) }}
46
- restore-keys: |
47
- ${{ runner.os }}-gems-
42
+ bundler-cache: true
48
43
 
49
44
  - name: Install PostgreSQL client
50
45
  run: |
51
46
  sudo apt-get -yqq install libpq-dev
52
47
 
53
- - name: Configure Bundler
54
- run: |
55
- gem install bundler -v 2.1.4 --no-document
56
- bundle config set path 'vendor/bundle'
57
- bundle install --jobs 4 --retry 3
58
-
59
48
  - name: Run tests with RSpec
60
- uses: paambaati/codeclimate-action@v2.5.4
49
+ uses: paambaati/codeclimate-action@v2.7.5
61
50
  env:
62
51
  CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
63
52
  with:
data/.rubocop.yml CHANGED
@@ -1,7 +1,10 @@
1
1
  require: rubocop-rspec
2
2
 
3
3
  AllCops:
4
+ NewCops: enable
4
5
  TargetRubyVersion: 2.6
6
+ Exclude:
7
+ - gemfiles/*
5
8
 
6
9
  Layout/LineLength:
7
10
  Max: 120
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.6
1
+ 3.0.0
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 2.7.2
1
+ ruby 3.0.0
data/Appraisals CHANGED
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  appraise 'activerecord-6.0.0' do
2
- gem 'activerecord', '6.0.0'
4
+ gem 'activerecord', '~> 6.0', '< 6.1'
3
5
  end
4
6
 
5
7
  appraise 'activerecord-6.1.0' do
6
- gem 'activerecord', '6.1.0'
8
+ gem 'activerecord', '~> 6.1', '< 6.2'
7
9
  end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- table_saw (2.8.1)
4
+ table_saw (2.9.0)
5
5
  activerecord (>= 5.2)
6
6
  pg
7
7
  thor
@@ -37,7 +37,7 @@ GEM
37
37
  bundler
38
38
  rake
39
39
  thor (>= 0.14.0)
40
- ast (2.4.0)
40
+ ast (2.4.1)
41
41
  builder (3.2.4)
42
42
  coderay (1.1.2)
43
43
  combustion (1.3.1)
@@ -52,23 +52,24 @@ GEM
52
52
  erubi (1.10.0)
53
53
  i18n (1.8.5)
54
54
  concurrent-ruby (~> 1.0)
55
- jaro_winkler (1.5.4)
56
55
  json (2.3.1)
57
56
  loofah (2.8.0)
58
57
  crass (~> 1.0.2)
59
58
  nokogiri (>= 1.5.9)
60
59
  method_source (0.9.2)
61
- mini_portile2 (2.4.0)
60
+ mini_portile2 (2.5.0)
62
61
  minitest (5.14.2)
63
- nokogiri (1.10.10)
64
- mini_portile2 (~> 2.4.0)
65
- parallel (1.19.1)
66
- parser (2.7.1.2)
67
- ast (~> 2.4.0)
62
+ nokogiri (1.11.1)
63
+ mini_portile2 (~> 2.5.0)
64
+ racc (~> 1.4)
65
+ parallel (1.20.1)
66
+ parser (3.0.0.0)
67
+ ast (~> 2.4.1)
68
68
  pg (1.2.3)
69
69
  pry (0.12.2)
70
70
  coderay (~> 1.1.0)
71
71
  method_source (~> 0.9.0)
72
+ racc (1.5.2)
72
73
  rack (2.2.3)
73
74
  rack-test (1.1.0)
74
75
  rack (>= 1.0, < 3)
@@ -85,6 +86,7 @@ GEM
85
86
  thor (~> 1.0)
86
87
  rainbow (3.0.0)
87
88
  rake (13.0.1)
89
+ regexp_parser (2.0.3)
88
90
  rexml (3.2.4)
89
91
  rspec (3.9.0)
90
92
  rspec-core (~> 3.9.0)
@@ -99,17 +101,21 @@ GEM
99
101
  diff-lcs (>= 1.2.0, < 2.0)
100
102
  rspec-support (~> 3.9.0)
101
103
  rspec-support (3.9.2)
102
- rubocop (0.82.0)
103
- jaro_winkler (~> 1.5.1)
104
+ rubocop (0.93.1)
104
105
  parallel (~> 1.10)
105
- parser (>= 2.7.0.1)
106
+ parser (>= 2.7.1.5)
106
107
  rainbow (>= 2.2.2, < 4.0)
108
+ regexp_parser (>= 1.8)
107
109
  rexml
110
+ rubocop-ast (>= 0.6.0)
108
111
  ruby-progressbar (~> 1.7)
109
112
  unicode-display_width (>= 1.4.0, < 2.0)
110
- rubocop-rspec (1.33.0)
111
- rubocop (>= 0.60.0)
112
- ruby-progressbar (1.10.1)
113
+ rubocop-ast (1.3.0)
114
+ parser (>= 2.7.1.5)
115
+ rubocop-rspec (1.44.1)
116
+ rubocop (~> 0.87)
117
+ rubocop-ast (>= 0.7.1)
118
+ ruby-progressbar (1.11.0)
113
119
  scenic (1.5.4)
114
120
  activerecord (>= 4.0.0)
115
121
  railties (>= 4.0.0)
@@ -141,4 +147,4 @@ DEPENDENCIES
141
147
  table_saw!
142
148
 
143
149
  BUNDLED WITH
144
- 2.1.4
150
+ 2.2.3
data/exe/table-saw CHANGED
@@ -25,6 +25,8 @@ class CLI < Thor
25
25
  method_option :manifest, aliases: '-m', required: true
26
26
  method_option :output, aliases: '-o', default: 'output.dump'
27
27
  method_option :format, type: :hash, default: { 'type' => 'copy' }
28
+ method_option :variables, aliases: '-v', type: :hash, default: {},
29
+ desc: 'This option takes a hash to override variables provided in the manifest'
28
30
  def dump
29
31
  TableSaw.configure(options.to_hash)
30
32
  records = TableSaw::DependencyGraph::Build.new(TableSaw::Manifest.instance).call
@@ -3,6 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "6.0.0"
6
+ gem "activerecord", "~> 6.0", "< 6.1"
7
7
 
8
8
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- table_saw (2.7.0)
4
+ table_saw (2.9.0)
5
5
  activerecord (>= 5.2)
6
6
  pg
7
7
  thor
@@ -9,30 +9,30 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (6.0.0)
13
- actionview (= 6.0.0)
14
- activesupport (= 6.0.0)
15
- rack (~> 2.0)
12
+ actionpack (6.0.3.4)
13
+ actionview (= 6.0.3.4)
14
+ activesupport (= 6.0.3.4)
15
+ rack (~> 2.0, >= 2.0.8)
16
16
  rack-test (>= 0.6.3)
17
17
  rails-dom-testing (~> 2.0)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
- actionview (6.0.0)
20
- activesupport (= 6.0.0)
19
+ actionview (6.0.3.4)
20
+ activesupport (= 6.0.3.4)
21
21
  builder (~> 3.1)
22
22
  erubi (~> 1.4)
23
23
  rails-dom-testing (~> 2.0)
24
24
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
- activemodel (6.0.0)
26
- activesupport (= 6.0.0)
27
- activerecord (6.0.0)
28
- activemodel (= 6.0.0)
29
- activesupport (= 6.0.0)
30
- activesupport (6.0.0)
25
+ activemodel (6.0.3.4)
26
+ activesupport (= 6.0.3.4)
27
+ activerecord (6.0.3.4)
28
+ activemodel (= 6.0.3.4)
29
+ activesupport (= 6.0.3.4)
30
+ activesupport (6.0.3.4)
31
31
  concurrent-ruby (~> 1.0, >= 1.0.2)
32
32
  i18n (>= 0.7, < 2)
33
33
  minitest (~> 5.1)
34
34
  tzinfo (~> 1.1)
35
- zeitwerk (~> 2.1, >= 2.1.8)
35
+ zeitwerk (~> 2.2, >= 2.2.2)
36
36
  appraisal (2.3.0)
37
37
  bundler
38
38
  rake
@@ -48,7 +48,7 @@ GEM
48
48
  crass (1.0.6)
49
49
  database_cleaner (1.8.5)
50
50
  diff-lcs (1.4.4)
51
- docile (1.3.2)
51
+ docile (1.3.4)
52
52
  erubi (1.10.0)
53
53
  i18n (1.8.5)
54
54
  concurrent-ruby (~> 1.0)
@@ -61,7 +61,7 @@ GEM
61
61
  nokogiri (1.10.10)
62
62
  mini_portile2 (~> 2.4.0)
63
63
  parallel (1.20.1)
64
- parser (2.7.2.0)
64
+ parser (3.0.0.0)
65
65
  ast (~> 2.4.1)
66
66
  pg (1.2.3)
67
67
  pry (0.13.1)
@@ -75,29 +75,29 @@ GEM
75
75
  nokogiri (>= 1.6)
76
76
  rails-html-sanitizer (1.3.0)
77
77
  loofah (~> 2.3)
78
- railties (6.0.0)
79
- actionpack (= 6.0.0)
80
- activesupport (= 6.0.0)
78
+ railties (6.0.3.4)
79
+ actionpack (= 6.0.3.4)
80
+ activesupport (= 6.0.3.4)
81
81
  method_source
82
82
  rake (>= 0.8.7)
83
83
  thor (>= 0.20.3, < 2.0)
84
84
  rainbow (3.0.0)
85
- rake (13.0.1)
86
- regexp_parser (2.0.0)
85
+ rake (13.0.3)
86
+ regexp_parser (2.0.3)
87
87
  rexml (3.2.4)
88
- rspec (3.9.0)
89
- rspec-core (~> 3.9.0)
90
- rspec-expectations (~> 3.9.0)
91
- rspec-mocks (~> 3.9.0)
92
- rspec-core (3.9.3)
93
- rspec-support (~> 3.9.3)
94
- rspec-expectations (3.9.4)
88
+ rspec (3.10.0)
89
+ rspec-core (~> 3.10.0)
90
+ rspec-expectations (~> 3.10.0)
91
+ rspec-mocks (~> 3.10.0)
92
+ rspec-core (3.10.1)
93
+ rspec-support (~> 3.10.0)
94
+ rspec-expectations (3.10.1)
95
95
  diff-lcs (>= 1.2.0, < 2.0)
96
- rspec-support (~> 3.9.0)
97
- rspec-mocks (3.9.1)
96
+ rspec-support (~> 3.10.0)
97
+ rspec-mocks (3.10.1)
98
98
  diff-lcs (>= 1.2.0, < 2.0)
99
- rspec-support (~> 3.9.0)
100
- rspec-support (3.9.4)
99
+ rspec-support (~> 3.10.0)
100
+ rspec-support (3.10.1)
101
101
  rubocop (0.93.1)
102
102
  parallel (~> 1.10)
103
103
  parser (>= 2.7.1.5)
@@ -112,26 +112,29 @@ GEM
112
112
  rubocop-rspec (1.44.1)
113
113
  rubocop (~> 0.87)
114
114
  rubocop-ast (>= 0.7.1)
115
- ruby-progressbar (1.10.1)
116
- scenic (1.5.2)
115
+ ruby-progressbar (1.11.0)
116
+ scenic (1.5.4)
117
117
  activerecord (>= 4.0.0)
118
118
  railties (>= 4.0.0)
119
- simplecov (0.19.1)
119
+ simplecov (0.20.0)
120
120
  docile (~> 1.1)
121
121
  simplecov-html (~> 0.11)
122
+ simplecov_json_formatter (~> 0.1)
122
123
  simplecov-html (0.12.3)
124
+ simplecov_json_formatter (0.1.2)
123
125
  thor (1.0.1)
124
126
  thread_safe (0.3.6)
125
- tzinfo (1.2.8)
127
+ tzinfo (1.2.9)
126
128
  thread_safe (~> 0.1)
127
129
  unicode-display_width (1.7.0)
128
130
  zeitwerk (2.4.2)
129
131
 
130
132
  PLATFORMS
131
- ruby
133
+ x86_64-darwin-20
134
+ x86_64-linux
132
135
 
133
136
  DEPENDENCIES
134
- activerecord (= 6.0.0)
137
+ activerecord (~> 6.0, < 6.1)
135
138
  appraisal
136
139
  bundler (~> 2.0)
137
140
  combustion (~> 1.3)
@@ -145,4 +148,4 @@ DEPENDENCIES
145
148
  table_saw!
146
149
 
147
150
  BUNDLED WITH
148
- 2.1.4
151
+ 2.2.3
@@ -3,6 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "6.1.0"
6
+ gem "activerecord", "~> 6.1", "< 6.2"
7
7
 
8
8
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- table_saw (2.7.0)
4
+ table_saw (2.9.0)
5
5
  activerecord (>= 5.2)
6
6
  pg
7
7
  thor
@@ -48,7 +48,7 @@ GEM
48
48
  crass (1.0.6)
49
49
  database_cleaner (1.8.5)
50
50
  diff-lcs (1.4.4)
51
- docile (1.3.2)
51
+ docile (1.3.4)
52
52
  erubi (1.10.0)
53
53
  i18n (1.8.5)
54
54
  concurrent-ruby (~> 1.0)
@@ -61,7 +61,7 @@ GEM
61
61
  nokogiri (1.10.10)
62
62
  mini_portile2 (~> 2.4.0)
63
63
  parallel (1.20.1)
64
- parser (2.7.2.0)
64
+ parser (3.0.0.0)
65
65
  ast (~> 2.4.1)
66
66
  pg (1.2.3)
67
67
  pry (0.13.1)
@@ -82,22 +82,22 @@ GEM
82
82
  rake (>= 0.8.7)
83
83
  thor (~> 1.0)
84
84
  rainbow (3.0.0)
85
- rake (13.0.1)
86
- regexp_parser (2.0.0)
85
+ rake (13.0.3)
86
+ regexp_parser (2.0.3)
87
87
  rexml (3.2.4)
88
- rspec (3.9.0)
89
- rspec-core (~> 3.9.0)
90
- rspec-expectations (~> 3.9.0)
91
- rspec-mocks (~> 3.9.0)
92
- rspec-core (3.9.3)
93
- rspec-support (~> 3.9.3)
94
- rspec-expectations (3.9.4)
88
+ rspec (3.10.0)
89
+ rspec-core (~> 3.10.0)
90
+ rspec-expectations (~> 3.10.0)
91
+ rspec-mocks (~> 3.10.0)
92
+ rspec-core (3.10.1)
93
+ rspec-support (~> 3.10.0)
94
+ rspec-expectations (3.10.1)
95
95
  diff-lcs (>= 1.2.0, < 2.0)
96
- rspec-support (~> 3.9.0)
97
- rspec-mocks (3.9.1)
96
+ rspec-support (~> 3.10.0)
97
+ rspec-mocks (3.10.1)
98
98
  diff-lcs (>= 1.2.0, < 2.0)
99
- rspec-support (~> 3.9.0)
100
- rspec-support (3.9.4)
99
+ rspec-support (~> 3.10.0)
100
+ rspec-support (3.10.1)
101
101
  rubocop (0.93.1)
102
102
  parallel (~> 1.10)
103
103
  parser (>= 2.7.1.5)
@@ -112,25 +112,28 @@ GEM
112
112
  rubocop-rspec (1.44.1)
113
113
  rubocop (~> 0.87)
114
114
  rubocop-ast (>= 0.7.1)
115
- ruby-progressbar (1.10.1)
116
- scenic (1.5.2)
115
+ ruby-progressbar (1.11.0)
116
+ scenic (1.5.4)
117
117
  activerecord (>= 4.0.0)
118
118
  railties (>= 4.0.0)
119
- simplecov (0.19.1)
119
+ simplecov (0.20.0)
120
120
  docile (~> 1.1)
121
121
  simplecov-html (~> 0.11)
122
+ simplecov_json_formatter (~> 0.1)
122
123
  simplecov-html (0.12.3)
124
+ simplecov_json_formatter (0.1.2)
123
125
  thor (1.0.1)
124
- tzinfo (2.0.3)
126
+ tzinfo (2.0.4)
125
127
  concurrent-ruby (~> 1.0)
126
128
  unicode-display_width (1.7.0)
127
129
  zeitwerk (2.4.2)
128
130
 
129
131
  PLATFORMS
130
- ruby
132
+ x86_64-darwin-20
133
+ x86_64-linux
131
134
 
132
135
  DEPENDENCIES
133
- activerecord (= 6.1.0)
136
+ activerecord (~> 6.1, < 6.2)
134
137
  appraisal
135
138
  bundler (~> 2.0)
136
139
  combustion (~> 1.3)
@@ -144,4 +147,4 @@ DEPENDENCIES
144
147
  table_saw!
145
148
 
146
149
  BUNDLED WITH
147
- 2.1.4
150
+ 2.2.3
@@ -2,6 +2,7 @@
2
2
 
3
3
  module TableSaw
4
4
  class Configuration
5
+ attr_writer :variables
5
6
  attr_accessor :dbname, :host, :port, :user, :password, :manifest, :output, :format
6
7
 
7
8
  def connection
@@ -10,12 +11,16 @@ module TableSaw
10
11
 
11
12
  def url=(value)
12
13
  URI.parse(value).tap do |uri|
13
- self.dbname = uri.path[1..-1]
14
+ self.dbname = uri.path[1..]
14
15
  self.host = uri.host
15
16
  self.port = uri.port
16
17
  self.user = uri.user
17
18
  self.password = uri.password
18
19
  end
19
20
  end
21
+
22
+ def variables
23
+ @variables || {}
24
+ end
20
25
  end
21
26
  end
@@ -36,7 +36,7 @@ module TableSaw
36
36
 
37
37
  attr_reader :name, :from_table, :from_column, :to_table, :to_column
38
38
 
39
- def initialize(name: nil, from_table:, from_column:, to_table:, to_column:)
39
+ def initialize(from_table:, from_column:, to_table:, to_column:, name: nil)
40
40
  @name = name
41
41
  @from_table = from_table
42
42
  @from_column = from_column
@@ -47,7 +47,8 @@ module TableSaw
47
47
  end
48
48
 
49
49
  def variables
50
- config.fetch('variables', {})
50
+ vars = config.fetch('variables', {})
51
+ vars.merge(TableSaw.configuration.variables.slice(*vars.keys))
51
52
  end
52
53
 
53
54
  def tables
@@ -23,7 +23,7 @@ module TableSaw
23
23
  end
24
24
 
25
25
  def sql
26
- [prepare_statement, conflict_statement].compact.join(' ') + ';'
26
+ "#{[prepare_statement, conflict_statement].compact.join(' ')};"
27
27
  end
28
28
 
29
29
  def column_types
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TableSaw
4
- VERSION = '2.8.1'
4
+ VERSION = '2.9.0'
5
5
  end
data/table_saw.gemspec CHANGED
@@ -23,6 +23,8 @@ Gem::Specification.new do |spec|
23
23
  spec.executables = ['table-saw']
24
24
  spec.require_paths = ['lib']
25
25
 
26
+ spec.required_ruby_version = '>= 2.6'
27
+
26
28
  spec.add_dependency 'activerecord', '>= 5.2'
27
29
  spec.add_dependency 'pg'
28
30
  spec.add_dependency 'thor'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: table_saw
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.1
4
+ version: 2.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hamed Asghari
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-17 00:00:00.000000000 Z
11
+ date: 2021-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -203,7 +203,6 @@ files:
203
203
  - bin/console
204
204
  - bin/setup
205
205
  - exe/table-saw
206
- - gemfiles/.bundle/config
207
206
  - gemfiles/activerecord_6.0.0.gemfile
208
207
  - gemfiles/activerecord_6.0.0.gemfile.lock
209
208
  - gemfiles/activerecord_6.1.0.gemfile
@@ -247,14 +246,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
247
246
  requirements:
248
247
  - - ">="
249
248
  - !ruby/object:Gem::Version
250
- version: '0'
249
+ version: '2.6'
251
250
  required_rubygems_version: !ruby/object:Gem::Requirement
252
251
  requirements:
253
252
  - - ">="
254
253
  - !ruby/object:Gem::Version
255
254
  version: '0'
256
255
  requirements: []
257
- rubygems_version: 3.1.4
256
+ rubygems_version: 3.2.3
258
257
  signing_key:
259
258
  specification_version: 4
260
259
  summary: Create a postgres dump file from a subset of tables
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_RETRY: "1"