table_saw 2.7.0 → 2.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: d7ba43df3b9906b32dc2478f41c974ee5cca5036d5ec7f95fa0ba6f04ece6812
4
- data.tar.gz: d4775622ad45fc31d5a658d095807e925e4b0570a6a01eeb302546c5b5669540
3
+ metadata.gz: 3c7879158171aacb00de1642a7b68d9df7ec27a9a972e5950ad45743e89730db
4
+ data.tar.gz: e78cb24aff6cc86ab5aa18c3fc66829793b5cce31b020fe00ae0e0293ce47ea3
5
5
  SHA512:
6
- metadata.gz: 5833756a4f1746c2b54a9ddd27766f2ff3fe651455e2dcb8112938e2c0b06984a6c0c3b1d5990b1a8acfabe3e65cb2ef85807dbc2f6156f254e7c3cf794c0a17
7
- data.tar.gz: c620092fcdf65362c007c38ea4bbb3e66ed016d6a29a24d11e62e0f6d23fd5e70e2aa92c9c82b5b3cf7de16a6cf00e3c8574906d4a90630ad13b3483826e15a4
6
+ metadata.gz: 24e4531703366fe1a6c3f524c706fb2d6e677a2ec509f4e66cef61076fe8b588c6d031ea66914707a0f9d2fc93f33fd5dcb23849c0aceb6d0c889623cdd357a3
7
+ data.tar.gz: bbb17e412000aa021a97132bf7dc681381e24e83bd23cf0b817058ff6caaa72953f7294a0bdac1b3c161e7ef0decc9264f4444b946d71cfe8f8ff3aa851818fd
@@ -7,9 +7,21 @@ jobs:
7
7
 
8
8
  runs-on: ubuntu-latest
9
9
 
10
+ strategy:
11
+ matrix:
12
+ ruby:
13
+ - 2.6.x
14
+ - 2.7.x
15
+ activerecord:
16
+ - 6.0.0
17
+ - 6.1.0
18
+
19
+ env:
20
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile
21
+
10
22
  services:
11
23
  postgres:
12
- image: postgres:12.2
24
+ image: postgres:12.4
13
25
  env:
14
26
  POSTGRES_USER: postgres
15
27
  POSTGRES_PASSWORD: postgres
@@ -22,15 +34,15 @@ jobs:
22
34
  steps:
23
35
  - uses: actions/checkout@v2
24
36
 
25
- - name: Set up Ruby 2.6
37
+ - name: Set up Ruby
26
38
  uses: actions/setup-ruby@v1
27
39
  with:
28
- ruby-version: 2.6.x
40
+ ruby-version: ${{ matrix.ruby }}
29
41
 
30
42
  - uses: actions/cache@v1
31
43
  with:
32
44
  path: vendor/bundle
33
- key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
45
+ key: ${{ runner.os }}-gems-${{ hashFiles(format('gemfiles/activerecord_{0}.gemfile.lock', matrix.activerecord)) }}
34
46
  restore-keys: |
35
47
  ${{ runner.os }}-gems-
36
48
 
@@ -41,7 +53,7 @@ jobs:
41
53
  - name: Configure Bundler
42
54
  run: |
43
55
  gem install bundler -v 2.1.4 --no-document
44
- bundle config path 'vendor/bundle'
56
+ bundle config set path 'vendor/bundle'
45
57
  bundle install --jobs 4 --retry 3
46
58
 
47
59
  - name: Run tests with RSpec
@@ -0,0 +1 @@
1
+ ruby 2.7.2
@@ -0,0 +1,7 @@
1
+ appraise 'activerecord-6.0.0' do
2
+ gem 'activerecord', '6.0.0'
3
+ end
4
+
5
+ appraise 'activerecord-6.1.0' do
6
+ gem 'activerecord', '6.1.0'
7
+ end
data/Gemfile CHANGED
@@ -4,3 +4,5 @@ source 'https://rubygems.org'
4
4
 
5
5
  # Specify your gem's dependencies in table_saw.gemspec
6
6
  gemspec
7
+
8
+ gem 'appraisal'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- table_saw (2.7.0)
4
+ table_saw (2.8.0)
5
5
  activerecord (>= 5.2)
6
6
  pg
7
7
  thor
@@ -9,54 +9,58 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (6.0.2.2)
13
- actionview (= 6.0.2.2)
14
- activesupport (= 6.0.2.2)
15
- rack (~> 2.0, >= 2.0.8)
12
+ actionpack (6.1.0)
13
+ actionview (= 6.1.0)
14
+ activesupport (= 6.1.0)
15
+ rack (~> 2.0, >= 2.0.9)
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.2.2)
20
- activesupport (= 6.0.2.2)
19
+ actionview (6.1.0)
20
+ activesupport (= 6.1.0)
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.2.2)
26
- activesupport (= 6.0.2.2)
27
- activerecord (6.0.2.2)
28
- activemodel (= 6.0.2.2)
29
- activesupport (= 6.0.2.2)
30
- activesupport (6.0.2.2)
25
+ activemodel (6.1.0)
26
+ activesupport (= 6.1.0)
27
+ activerecord (6.1.0)
28
+ activemodel (= 6.1.0)
29
+ activesupport (= 6.1.0)
30
+ activesupport (6.1.0)
31
31
  concurrent-ruby (~> 1.0, >= 1.0.2)
32
- i18n (>= 0.7, < 2)
33
- minitest (~> 5.1)
34
- tzinfo (~> 1.1)
35
- zeitwerk (~> 2.2)
32
+ i18n (>= 1.6, < 2)
33
+ minitest (>= 5.1)
34
+ tzinfo (~> 2.0)
35
+ zeitwerk (~> 2.3)
36
+ appraisal (2.3.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
36
40
  ast (2.4.0)
37
41
  builder (3.2.4)
38
42
  coderay (1.1.2)
39
- combustion (1.1.2)
43
+ combustion (1.3.1)
40
44
  activesupport (>= 3.0.0)
41
45
  railties (>= 3.0.0)
42
46
  thor (>= 0.14.6)
43
- concurrent-ruby (1.1.6)
47
+ concurrent-ruby (1.1.7)
44
48
  crass (1.0.6)
45
49
  database_cleaner (1.7.0)
46
50
  diff-lcs (1.3)
47
51
  docile (1.3.1)
48
- erubi (1.9.0)
49
- i18n (1.8.2)
52
+ erubi (1.10.0)
53
+ i18n (1.8.5)
50
54
  concurrent-ruby (~> 1.0)
51
55
  jaro_winkler (1.5.4)
52
- json (2.2.0)
53
- loofah (2.4.0)
56
+ json (2.3.1)
57
+ loofah (2.8.0)
54
58
  crass (~> 1.0.2)
55
59
  nokogiri (>= 1.5.9)
56
60
  method_source (0.9.2)
57
61
  mini_portile2 (2.4.0)
58
- minitest (5.14.0)
59
- nokogiri (1.10.9)
62
+ minitest (5.14.2)
63
+ nokogiri (1.10.10)
60
64
  mini_portile2 (~> 2.4.0)
61
65
  parallel (1.19.1)
62
66
  parser (2.7.1.2)
@@ -65,7 +69,7 @@ GEM
65
69
  pry (0.12.2)
66
70
  coderay (~> 1.1.0)
67
71
  method_source (~> 0.9.0)
68
- rack (2.2.2)
72
+ rack (2.2.3)
69
73
  rack-test (1.1.0)
70
74
  rack (>= 1.0, < 3)
71
75
  rails-dom-testing (2.0.3)
@@ -73,12 +77,12 @@ GEM
73
77
  nokogiri (>= 1.6)
74
78
  rails-html-sanitizer (1.3.0)
75
79
  loofah (~> 2.3)
76
- railties (6.0.2.2)
77
- actionpack (= 6.0.2.2)
78
- activesupport (= 6.0.2.2)
80
+ railties (6.1.0)
81
+ actionpack (= 6.1.0)
82
+ activesupport (= 6.1.0)
79
83
  method_source
80
84
  rake (>= 0.8.7)
81
- thor (>= 0.20.3, < 2.0)
85
+ thor (~> 1.0)
82
86
  rainbow (3.0.0)
83
87
  rake (13.0.1)
84
88
  rexml (3.2.4)
@@ -106,7 +110,7 @@ GEM
106
110
  rubocop-rspec (1.33.0)
107
111
  rubocop (>= 0.60.0)
108
112
  ruby-progressbar (1.10.1)
109
- scenic (1.5.2)
113
+ scenic (1.5.4)
110
114
  activerecord (>= 4.0.0)
111
115
  railties (>= 4.0.0)
112
116
  simplecov (0.16.1)
@@ -115,18 +119,18 @@ GEM
115
119
  simplecov-html (~> 0.10.0)
116
120
  simplecov-html (0.10.2)
117
121
  thor (1.0.1)
118
- thread_safe (0.3.6)
119
- tzinfo (1.2.6)
120
- thread_safe (~> 0.1)
122
+ tzinfo (2.0.3)
123
+ concurrent-ruby (~> 1.0)
121
124
  unicode-display_width (1.7.0)
122
- zeitwerk (2.3.0)
125
+ zeitwerk (2.4.2)
123
126
 
124
127
  PLATFORMS
125
128
  ruby
126
129
 
127
130
  DEPENDENCIES
131
+ appraisal
128
132
  bundler (~> 2.0)
129
- combustion (~> 1.1)
133
+ combustion (~> 1.3)
130
134
  database_cleaner (~> 1.7)
131
135
  pry
132
136
  rake (~> 13.0)
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord", "6.0.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,148 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ table_saw (2.7.0)
5
+ activerecord (>= 5.2)
6
+ pg
7
+ thor
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionpack (6.0.0)
13
+ actionview (= 6.0.0)
14
+ activesupport (= 6.0.0)
15
+ rack (~> 2.0)
16
+ rack-test (>= 0.6.3)
17
+ rails-dom-testing (~> 2.0)
18
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
+ actionview (6.0.0)
20
+ activesupport (= 6.0.0)
21
+ builder (~> 3.1)
22
+ erubi (~> 1.4)
23
+ rails-dom-testing (~> 2.0)
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)
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ i18n (>= 0.7, < 2)
33
+ minitest (~> 5.1)
34
+ tzinfo (~> 1.1)
35
+ zeitwerk (~> 2.1, >= 2.1.8)
36
+ appraisal (2.3.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ ast (2.4.1)
41
+ builder (3.2.4)
42
+ coderay (1.1.3)
43
+ combustion (1.3.1)
44
+ activesupport (>= 3.0.0)
45
+ railties (>= 3.0.0)
46
+ thor (>= 0.14.6)
47
+ concurrent-ruby (1.1.7)
48
+ crass (1.0.6)
49
+ database_cleaner (1.8.5)
50
+ diff-lcs (1.4.4)
51
+ docile (1.3.2)
52
+ erubi (1.10.0)
53
+ i18n (1.8.5)
54
+ concurrent-ruby (~> 1.0)
55
+ loofah (2.8.0)
56
+ crass (~> 1.0.2)
57
+ nokogiri (>= 1.5.9)
58
+ method_source (1.0.0)
59
+ mini_portile2 (2.4.0)
60
+ minitest (5.14.2)
61
+ nokogiri (1.10.10)
62
+ mini_portile2 (~> 2.4.0)
63
+ parallel (1.20.1)
64
+ parser (2.7.2.0)
65
+ ast (~> 2.4.1)
66
+ pg (1.2.3)
67
+ pry (0.13.1)
68
+ coderay (~> 1.1)
69
+ method_source (~> 1.0)
70
+ rack (2.2.3)
71
+ rack-test (1.1.0)
72
+ rack (>= 1.0, < 3)
73
+ rails-dom-testing (2.0.3)
74
+ activesupport (>= 4.2.0)
75
+ nokogiri (>= 1.6)
76
+ rails-html-sanitizer (1.3.0)
77
+ loofah (~> 2.3)
78
+ railties (6.0.0)
79
+ actionpack (= 6.0.0)
80
+ activesupport (= 6.0.0)
81
+ method_source
82
+ rake (>= 0.8.7)
83
+ thor (>= 0.20.3, < 2.0)
84
+ rainbow (3.0.0)
85
+ rake (13.0.1)
86
+ regexp_parser (2.0.0)
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)
95
+ diff-lcs (>= 1.2.0, < 2.0)
96
+ rspec-support (~> 3.9.0)
97
+ rspec-mocks (3.9.1)
98
+ diff-lcs (>= 1.2.0, < 2.0)
99
+ rspec-support (~> 3.9.0)
100
+ rspec-support (3.9.4)
101
+ rubocop (0.93.1)
102
+ parallel (~> 1.10)
103
+ parser (>= 2.7.1.5)
104
+ rainbow (>= 2.2.2, < 4.0)
105
+ regexp_parser (>= 1.8)
106
+ rexml
107
+ rubocop-ast (>= 0.6.0)
108
+ ruby-progressbar (~> 1.7)
109
+ unicode-display_width (>= 1.4.0, < 2.0)
110
+ rubocop-ast (1.3.0)
111
+ parser (>= 2.7.1.5)
112
+ rubocop-rspec (1.44.1)
113
+ rubocop (~> 0.87)
114
+ rubocop-ast (>= 0.7.1)
115
+ ruby-progressbar (1.10.1)
116
+ scenic (1.5.2)
117
+ activerecord (>= 4.0.0)
118
+ railties (>= 4.0.0)
119
+ simplecov (0.19.1)
120
+ docile (~> 1.1)
121
+ simplecov-html (~> 0.11)
122
+ simplecov-html (0.12.3)
123
+ thor (1.0.1)
124
+ thread_safe (0.3.6)
125
+ tzinfo (1.2.8)
126
+ thread_safe (~> 0.1)
127
+ unicode-display_width (1.7.0)
128
+ zeitwerk (2.4.2)
129
+
130
+ PLATFORMS
131
+ ruby
132
+
133
+ DEPENDENCIES
134
+ activerecord (= 6.0.0)
135
+ appraisal
136
+ bundler (~> 2.0)
137
+ combustion (~> 1.3)
138
+ database_cleaner (~> 1.7)
139
+ pry
140
+ rake (~> 13.0)
141
+ rspec (~> 3.0)
142
+ rubocop-rspec (~> 1.33)
143
+ scenic (~> 1.5)
144
+ simplecov (~> 0.16)
145
+ table_saw!
146
+
147
+ BUNDLED WITH
148
+ 2.1.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord", "6.1.0"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,147 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ table_saw (2.7.0)
5
+ activerecord (>= 5.2)
6
+ pg
7
+ thor
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionpack (6.1.0)
13
+ actionview (= 6.1.0)
14
+ activesupport (= 6.1.0)
15
+ rack (~> 2.0, >= 2.0.9)
16
+ rack-test (>= 0.6.3)
17
+ rails-dom-testing (~> 2.0)
18
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
+ actionview (6.1.0)
20
+ activesupport (= 6.1.0)
21
+ builder (~> 3.1)
22
+ erubi (~> 1.4)
23
+ rails-dom-testing (~> 2.0)
24
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
+ activemodel (6.1.0)
26
+ activesupport (= 6.1.0)
27
+ activerecord (6.1.0)
28
+ activemodel (= 6.1.0)
29
+ activesupport (= 6.1.0)
30
+ activesupport (6.1.0)
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ i18n (>= 1.6, < 2)
33
+ minitest (>= 5.1)
34
+ tzinfo (~> 2.0)
35
+ zeitwerk (~> 2.3)
36
+ appraisal (2.3.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ ast (2.4.1)
41
+ builder (3.2.4)
42
+ coderay (1.1.3)
43
+ combustion (1.3.1)
44
+ activesupport (>= 3.0.0)
45
+ railties (>= 3.0.0)
46
+ thor (>= 0.14.6)
47
+ concurrent-ruby (1.1.7)
48
+ crass (1.0.6)
49
+ database_cleaner (1.8.5)
50
+ diff-lcs (1.4.4)
51
+ docile (1.3.2)
52
+ erubi (1.10.0)
53
+ i18n (1.8.5)
54
+ concurrent-ruby (~> 1.0)
55
+ loofah (2.8.0)
56
+ crass (~> 1.0.2)
57
+ nokogiri (>= 1.5.9)
58
+ method_source (1.0.0)
59
+ mini_portile2 (2.4.0)
60
+ minitest (5.14.2)
61
+ nokogiri (1.10.10)
62
+ mini_portile2 (~> 2.4.0)
63
+ parallel (1.20.1)
64
+ parser (2.7.2.0)
65
+ ast (~> 2.4.1)
66
+ pg (1.2.3)
67
+ pry (0.13.1)
68
+ coderay (~> 1.1)
69
+ method_source (~> 1.0)
70
+ rack (2.2.3)
71
+ rack-test (1.1.0)
72
+ rack (>= 1.0, < 3)
73
+ rails-dom-testing (2.0.3)
74
+ activesupport (>= 4.2.0)
75
+ nokogiri (>= 1.6)
76
+ rails-html-sanitizer (1.3.0)
77
+ loofah (~> 2.3)
78
+ railties (6.1.0)
79
+ actionpack (= 6.1.0)
80
+ activesupport (= 6.1.0)
81
+ method_source
82
+ rake (>= 0.8.7)
83
+ thor (~> 1.0)
84
+ rainbow (3.0.0)
85
+ rake (13.0.1)
86
+ regexp_parser (2.0.0)
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)
95
+ diff-lcs (>= 1.2.0, < 2.0)
96
+ rspec-support (~> 3.9.0)
97
+ rspec-mocks (3.9.1)
98
+ diff-lcs (>= 1.2.0, < 2.0)
99
+ rspec-support (~> 3.9.0)
100
+ rspec-support (3.9.4)
101
+ rubocop (0.93.1)
102
+ parallel (~> 1.10)
103
+ parser (>= 2.7.1.5)
104
+ rainbow (>= 2.2.2, < 4.0)
105
+ regexp_parser (>= 1.8)
106
+ rexml
107
+ rubocop-ast (>= 0.6.0)
108
+ ruby-progressbar (~> 1.7)
109
+ unicode-display_width (>= 1.4.0, < 2.0)
110
+ rubocop-ast (1.3.0)
111
+ parser (>= 2.7.1.5)
112
+ rubocop-rspec (1.44.1)
113
+ rubocop (~> 0.87)
114
+ rubocop-ast (>= 0.7.1)
115
+ ruby-progressbar (1.10.1)
116
+ scenic (1.5.2)
117
+ activerecord (>= 4.0.0)
118
+ railties (>= 4.0.0)
119
+ simplecov (0.19.1)
120
+ docile (~> 1.1)
121
+ simplecov-html (~> 0.11)
122
+ simplecov-html (0.12.3)
123
+ thor (1.0.1)
124
+ tzinfo (2.0.3)
125
+ concurrent-ruby (~> 1.0)
126
+ unicode-display_width (1.7.0)
127
+ zeitwerk (2.4.2)
128
+
129
+ PLATFORMS
130
+ ruby
131
+
132
+ DEPENDENCIES
133
+ activerecord (= 6.1.0)
134
+ appraisal
135
+ bundler (~> 2.0)
136
+ combustion (~> 1.3)
137
+ database_cleaner (~> 1.7)
138
+ pry
139
+ rake (~> 13.0)
140
+ rspec (~> 3.0)
141
+ rubocop-rspec (~> 1.33)
142
+ scenic (~> 1.5)
143
+ simplecov (~> 0.16)
144
+ table_saw!
145
+
146
+ BUNDLED WITH
147
+ 2.1.4
@@ -23,7 +23,7 @@ module TableSaw
23
23
 
24
24
  def serialized_values
25
25
  values.map do |value|
26
- connection.quote(connection.type_cast_from_column(db_column, value))
26
+ connection.quote_default_expression(value, db_column)
27
27
  end
28
28
  end
29
29
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TableSaw
4
- VERSION = '2.7.0'
4
+ VERSION = '2.8.0'
5
5
  end
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.add_dependency 'thor'
29
29
 
30
30
  spec.add_development_dependency 'bundler', '~> 2.0'
31
- spec.add_development_dependency 'combustion', '~> 1.1'
31
+ spec.add_development_dependency 'combustion', '~> 1.3'
32
32
  spec.add_development_dependency 'database_cleaner', '~> 1.7'
33
33
  spec.add_development_dependency 'pry'
34
34
  spec.add_development_dependency 'rake', '~> 13.0'
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.7.0
4
+ version: 2.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hamed Asghari
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-05 00:00:00.000000000 Z
11
+ date: 2020-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '1.1'
75
+ version: '1.3'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '1.1'
82
+ version: '1.3'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: database_cleaner
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -178,7 +178,7 @@ dependencies:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0.16'
181
- description:
181
+ description:
182
182
  email:
183
183
  - hasghari@gmail.com
184
184
  executables:
@@ -192,6 +192,8 @@ files:
192
192
  - ".rubocop.yml"
193
193
  - ".ruby-gemset"
194
194
  - ".ruby-version"
195
+ - ".tool-versions"
196
+ - Appraisals
195
197
  - CODE_OF_CONDUCT.md
196
198
  - Gemfile
197
199
  - Gemfile.lock
@@ -201,6 +203,11 @@ files:
201
203
  - bin/console
202
204
  - bin/setup
203
205
  - exe/table-saw
206
+ - gemfiles/.bundle/config
207
+ - gemfiles/activerecord_6.0.0.gemfile
208
+ - gemfiles/activerecord_6.0.0.gemfile.lock
209
+ - gemfiles/activerecord_6.1.0.gemfile
210
+ - gemfiles/activerecord_6.1.0.gemfile.lock
204
211
  - lib/table_saw.rb
205
212
  - lib/table_saw/associations.rb
206
213
  - lib/table_saw/configuration.rb
@@ -232,7 +239,7 @@ homepage: https://github.com/hasghari/table_saw
232
239
  licenses:
233
240
  - MIT
234
241
  metadata: {}
235
- post_install_message:
242
+ post_install_message:
236
243
  rdoc_options: []
237
244
  require_paths:
238
245
  - lib
@@ -247,8 +254,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
254
  - !ruby/object:Gem::Version
248
255
  version: '0'
249
256
  requirements: []
250
- rubygems_version: 3.0.3
251
- signing_key:
257
+ rubygems_version: 3.1.4
258
+ signing_key:
252
259
  specification_version: 4
253
260
  summary: Create a postgres dump file from a subset of tables
254
261
  test_files: []