parentry 1.6.0 → 1.7.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: 61d7162155374b612b01ec0d2c5519ca49e94e8c793f843b6187148d67dc16d4
4
- data.tar.gz: b1aea8a7225ff14ad890367d799171927eaaf99e262d3b9b4fcb52171f09d611
3
+ metadata.gz: 9f1f3b24aab789263d1d9a37a1d508d914cff2aec62fecde73ca362f3c515017
4
+ data.tar.gz: '094eb55292d2538004729cffb4aa2693a73136ddfb4397478bf1c9e0a3ca1c91'
5
5
  SHA512:
6
- metadata.gz: e96ac1b93d29040797963e598976d3878b7852bbb564e5d0ebd5d1ec15ab4c0c4362a4c887b750a5d8467d8207e8f376facbe23396b24e1e33c209cc58240848
7
- data.tar.gz: d6bdd03b87f6e35824e4b0cbb88a68fdaef2b81f9122a69ef211db4b1b064423af8a11017263cf6032c09076e7a5986dc598b6a1cde6d724fe821af86d2637e7
6
+ metadata.gz: 42d8ecc037279704e7105549beffaf5f40f1b86c7ebc079261ab9a6d8058d9d504e218e536c980edf5118a249f12362fc6b558611b176e7e98053ac7938ddb64
7
+ data.tar.gz: 3b66618773b4ec79daf699d4b5cdee40cc73ddf84422945ddd0a3aecc806b29d85e58d0d382cf794ffe3885e4a875cbcc445986a4c8bb7592af57fb5c0b308ab
@@ -10,12 +10,13 @@ jobs:
10
10
  strategy:
11
11
  matrix:
12
12
  ruby:
13
- - '2.7'
14
- - '3.0'
13
+ - '3.1'
14
+ - '3.2'
15
+ - '3.3'
15
16
  activerecord:
16
- - 6.0.0
17
17
  - 6.1.0
18
18
  - 7.0.0
19
+ - 7.1.0
19
20
  strategy:
20
21
  - array
21
22
  - ltree
@@ -36,7 +37,7 @@ jobs:
36
37
  options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
37
38
 
38
39
  steps:
39
- - uses: actions/checkout@v2
40
+ - uses: actions/checkout@v4
40
41
 
41
42
  - name: Set up Ruby
42
43
  uses: ruby/setup-ruby@v1
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ inherit_mode:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 2.5
7
+ TargetRubyVersion: 3.1
8
8
  Exclude:
9
9
  - gemfiles/**
10
10
 
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.0.3
1
+ ruby 3.3.4
data/Appraisals CHANGED
@@ -1,19 +1,23 @@
1
- appraise 'activerecord-5.1.5' do
2
- gem 'activerecord', '~> 5.1', '< 5.2'
3
- end
4
-
5
- appraise 'activerecord-5.2.0' do
6
- gem 'activerecord', '~> 5.2', '< 6'
1
+ appraise 'activerecord_6.1.0' do
2
+ gem 'activerecord', '~> 6.1', '< 6.2'
3
+ gem 'base64'
4
+ gem 'bigdecimal'
5
+ gem 'drb'
6
+ gem 'mutex_m'
7
7
  end
8
8
 
9
- appraise 'activerecord-6.0.0' do
10
- gem 'activerecord', '~> 6.0', '< 6.1'
9
+ appraise 'activerecord_7.0.0' do
10
+ gem 'activerecord', '~> 7.0', '< 7.1'
11
+ gem 'base64'
12
+ gem 'bigdecimal'
13
+ gem 'drb'
14
+ gem 'mutex_m'
11
15
  end
12
16
 
13
- appraise 'activerecord-6.1.0' do
14
- gem 'activerecord', '~> 6.1', '< 6.2'
17
+ appraise 'activerecord_7.1.0' do
18
+ gem 'activerecord', '~> 7.1', '< 7.2'
15
19
  end
16
20
 
17
- appraise 'activerecord-7.0.0' do
18
- gem 'activerecord', '~> 7.0', '< 7.1'
21
+ appraise 'activerecord_7.2.0' do
22
+ gem 'activerecord', '~> 7.2', '< 8'
19
23
  end
data/Gemfile CHANGED
@@ -4,3 +4,12 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  gem 'appraisal'
7
+ gem 'bundler', '~> 2'
8
+ gem 'combustion', '~> 1.4'
9
+ gem 'database_cleaner', '~> 2'
10
+ gem 'pg', '~> 1.5'
11
+ gem 'pry', '~> 0.13'
12
+ gem 'rake', '~> 13'
13
+ gem 'rspec-rails', '~> 6.1'
14
+ gem 'rubocop-rspec', '~> 2'
15
+ gem 'simplecov', '~> 0.20'
@@ -3,6 +3,19 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
+ gem "bundler", "~> 2"
7
+ gem "combustion", "~> 1.4"
8
+ gem "database_cleaner", "~> 2"
9
+ gem "pg", "~> 1.5"
10
+ gem "pry", "~> 0.13"
11
+ gem "rake", "~> 13"
12
+ gem "rspec-rails", "~> 6.1"
13
+ gem "rubocop-rspec", "~> 2"
14
+ gem "simplecov", "~> 0.20"
6
15
  gem "activerecord", "~> 6.1", "< 6.2"
16
+ gem "base64"
17
+ gem "bigdecimal"
18
+ gem "drb"
19
+ gem "mutex_m"
7
20
 
8
21
  gemspec path: "../"
@@ -1,149 +1,180 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- parentry (1.6.0)
5
- activerecord (>= 5.1, < 7.1)
4
+ parentry (1.7.0)
5
+ activerecord (>= 6.1, < 8)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (6.1.0)
11
- actionview (= 6.1.0)
12
- activesupport (= 6.1.0)
10
+ actionpack (6.1.7.7)
11
+ actionview (= 6.1.7.7)
12
+ activesupport (= 6.1.7.7)
13
13
  rack (~> 2.0, >= 2.0.9)
14
14
  rack-test (>= 0.6.3)
15
15
  rails-dom-testing (~> 2.0)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (6.1.0)
18
- activesupport (= 6.1.0)
17
+ actionview (6.1.7.7)
18
+ activesupport (= 6.1.7.7)
19
19
  builder (~> 3.1)
20
20
  erubi (~> 1.4)
21
21
  rails-dom-testing (~> 2.0)
22
22
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activemodel (6.1.0)
24
- activesupport (= 6.1.0)
25
- activerecord (6.1.0)
26
- activemodel (= 6.1.0)
27
- activesupport (= 6.1.0)
28
- activesupport (6.1.0)
23
+ activemodel (6.1.7.7)
24
+ activesupport (= 6.1.7.7)
25
+ activerecord (6.1.7.7)
26
+ activemodel (= 6.1.7.7)
27
+ activesupport (= 6.1.7.7)
28
+ activesupport (6.1.7.7)
29
29
  concurrent-ruby (~> 1.0, >= 1.0.2)
30
30
  i18n (>= 1.6, < 2)
31
31
  minitest (>= 5.1)
32
32
  tzinfo (~> 2.0)
33
33
  zeitwerk (~> 2.3)
34
- appraisal (2.3.0)
34
+ appraisal (2.5.0)
35
35
  bundler
36
36
  rake
37
37
  thor (>= 0.14.0)
38
- ast (2.4.1)
38
+ ast (2.4.2)
39
+ base64 (0.2.0)
40
+ bigdecimal (3.1.8)
39
41
  builder (3.2.4)
40
42
  coderay (1.1.3)
41
- combustion (1.3.1)
43
+ combustion (1.4.0)
42
44
  activesupport (>= 3.0.0)
43
45
  railties (>= 3.0.0)
44
46
  thor (>= 0.14.6)
45
- concurrent-ruby (1.1.7)
47
+ concurrent-ruby (1.2.3)
46
48
  crass (1.0.6)
47
- database_cleaner (1.8.5)
48
- diff-lcs (1.4.4)
49
- docile (1.3.4)
50
- erubi (1.10.0)
51
- i18n (1.8.5)
49
+ database_cleaner (2.0.2)
50
+ database_cleaner-active_record (>= 2, < 3)
51
+ database_cleaner-active_record (2.1.0)
52
+ activerecord (>= 5.a)
53
+ database_cleaner-core (~> 2.0.0)
54
+ database_cleaner-core (2.0.1)
55
+ diff-lcs (1.5.1)
56
+ docile (1.4.0)
57
+ drb (2.2.1)
58
+ erubi (1.12.0)
59
+ i18n (1.14.4)
52
60
  concurrent-ruby (~> 1.0)
53
- loofah (2.8.0)
61
+ json (2.7.2)
62
+ language_server-protocol (3.17.0.3)
63
+ loofah (2.22.0)
54
64
  crass (~> 1.0.2)
55
- nokogiri (>= 1.5.9)
56
- method_source (1.0.0)
57
- mini_portile2 (2.4.0)
58
- minitest (5.14.2)
59
- nokogiri (1.10.10)
60
- mini_portile2 (~> 2.4.0)
61
- parallel (1.20.1)
62
- parser (3.0.0.0)
65
+ nokogiri (>= 1.12.0)
66
+ method_source (1.1.0)
67
+ minitest (5.22.3)
68
+ mutex_m (0.2.0)
69
+ nokogiri (1.16.4-x86_64-darwin)
70
+ racc (~> 1.4)
71
+ nokogiri (1.16.4-x86_64-linux)
72
+ racc (~> 1.4)
73
+ parallel (1.24.0)
74
+ parser (3.3.0.5)
63
75
  ast (~> 2.4.1)
64
- pg (1.2.3)
65
- pry (0.13.1)
76
+ racc
77
+ pg (1.5.6)
78
+ pry (0.14.2)
66
79
  coderay (~> 1.1)
67
80
  method_source (~> 1.0)
68
- rack (2.2.3)
69
- rack-test (1.1.0)
70
- rack (>= 1.0, < 3)
71
- rails-dom-testing (2.0.3)
72
- activesupport (>= 4.2.0)
81
+ racc (1.7.3)
82
+ rack (2.2.9)
83
+ rack-test (2.1.0)
84
+ rack (>= 1.3)
85
+ rails-dom-testing (2.2.0)
86
+ activesupport (>= 5.0.0)
87
+ minitest
73
88
  nokogiri (>= 1.6)
74
- rails-html-sanitizer (1.3.0)
75
- loofah (~> 2.3)
76
- railties (6.1.0)
77
- actionpack (= 6.1.0)
78
- activesupport (= 6.1.0)
89
+ rails-html-sanitizer (1.6.0)
90
+ loofah (~> 2.21)
91
+ nokogiri (~> 1.14)
92
+ railties (6.1.7.7)
93
+ actionpack (= 6.1.7.7)
94
+ activesupport (= 6.1.7.7)
79
95
  method_source
80
- rake (>= 0.8.7)
96
+ rake (>= 12.2)
81
97
  thor (~> 1.0)
82
- rainbow (3.0.0)
83
- rake (13.0.3)
84
- regexp_parser (2.0.3)
85
- rexml (3.2.4)
86
- rspec-core (3.10.1)
87
- rspec-support (~> 3.10.0)
88
- rspec-expectations (3.10.1)
98
+ rainbow (3.1.1)
99
+ rake (13.2.1)
100
+ regexp_parser (2.9.0)
101
+ rexml (3.2.6)
102
+ rspec-core (3.13.0)
103
+ rspec-support (~> 3.13.0)
104
+ rspec-expectations (3.13.0)
89
105
  diff-lcs (>= 1.2.0, < 2.0)
90
- rspec-support (~> 3.10.0)
91
- rspec-mocks (3.10.1)
106
+ rspec-support (~> 3.13.0)
107
+ rspec-mocks (3.13.0)
92
108
  diff-lcs (>= 1.2.0, < 2.0)
93
- rspec-support (~> 3.10.0)
94
- rspec-rails (4.0.2)
95
- actionpack (>= 4.2)
96
- activesupport (>= 4.2)
97
- railties (>= 4.2)
98
- rspec-core (~> 3.10)
99
- rspec-expectations (~> 3.10)
100
- rspec-mocks (~> 3.10)
101
- rspec-support (~> 3.10)
102
- rspec-support (3.10.1)
103
- rubocop (1.7.0)
109
+ rspec-support (~> 3.13.0)
110
+ rspec-rails (6.1.2)
111
+ actionpack (>= 6.1)
112
+ activesupport (>= 6.1)
113
+ railties (>= 6.1)
114
+ rspec-core (~> 3.13)
115
+ rspec-expectations (~> 3.13)
116
+ rspec-mocks (~> 3.13)
117
+ rspec-support (~> 3.13)
118
+ rspec-support (3.13.1)
119
+ rubocop (1.63.2)
120
+ json (~> 2.3)
121
+ language_server-protocol (>= 3.17.0)
104
122
  parallel (~> 1.10)
105
- parser (>= 2.7.1.5)
123
+ parser (>= 3.3.0.2)
106
124
  rainbow (>= 2.2.2, < 4.0)
107
125
  regexp_parser (>= 1.8, < 3.0)
108
- rexml
109
- rubocop-ast (>= 1.2.0, < 2.0)
126
+ rexml (>= 3.2.5, < 4.0)
127
+ rubocop-ast (>= 1.31.1, < 2.0)
110
128
  ruby-progressbar (~> 1.7)
111
- unicode-display_width (>= 1.4.0, < 2.0)
112
- rubocop-ast (1.3.0)
113
- parser (>= 2.7.1.5)
114
- rubocop-rspec (2.1.0)
115
- rubocop (~> 1.0)
116
- rubocop-ast (>= 1.1.0)
117
- ruby-progressbar (1.11.0)
118
- simplecov (0.20.0)
129
+ unicode-display_width (>= 2.4.0, < 3.0)
130
+ rubocop-ast (1.31.2)
131
+ parser (>= 3.3.0.4)
132
+ rubocop-capybara (2.20.0)
133
+ rubocop (~> 1.41)
134
+ rubocop-factory_bot (2.25.1)
135
+ rubocop (~> 1.41)
136
+ rubocop-rspec (2.29.1)
137
+ rubocop (~> 1.40)
138
+ rubocop-capybara (~> 2.17)
139
+ rubocop-factory_bot (~> 2.22)
140
+ rubocop-rspec_rails (~> 2.28)
141
+ rubocop-rspec_rails (2.28.3)
142
+ rubocop (~> 1.40)
143
+ ruby-progressbar (1.13.0)
144
+ simplecov (0.22.0)
119
145
  docile (~> 1.1)
120
146
  simplecov-html (~> 0.11)
121
147
  simplecov_json_formatter (~> 0.1)
122
148
  simplecov-html (0.12.3)
123
- simplecov_json_formatter (0.1.2)
124
- thor (1.0.1)
125
- tzinfo (2.0.4)
149
+ simplecov_json_formatter (0.1.4)
150
+ thor (1.3.1)
151
+ tzinfo (2.0.6)
126
152
  concurrent-ruby (~> 1.0)
127
- unicode-display_width (1.7.0)
128
- zeitwerk (2.4.2)
153
+ unicode-display_width (2.5.0)
154
+ zeitwerk (2.6.13)
129
155
 
130
156
  PLATFORMS
131
157
  x86_64-darwin-20
158
+ x86_64-darwin-23
132
159
  x86_64-linux
133
160
 
134
161
  DEPENDENCIES
135
162
  activerecord (~> 6.1, < 6.2)
136
163
  appraisal
164
+ base64
165
+ bigdecimal
137
166
  bundler (~> 2)
138
- combustion (~> 1.1)
139
- database_cleaner (~> 1.6)
167
+ combustion (~> 1.4)
168
+ database_cleaner (~> 2)
169
+ drb
170
+ mutex_m
140
171
  parentry!
141
- pg (~> 1.2)
172
+ pg (~> 1.5)
142
173
  pry (~> 0.13)
143
174
  rake (~> 13)
144
- rspec-rails (~> 4.0)
145
- rubocop-rspec (~> 2.1)
175
+ rspec-rails (~> 6.1)
176
+ rubocop-rspec (~> 2)
146
177
  simplecov (~> 0.20)
147
178
 
148
179
  BUNDLED WITH
149
- 2.2.32
180
+ 2.5.17
@@ -3,6 +3,19 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
+ gem "bundler", "~> 2"
7
+ gem "combustion", "~> 1.4"
8
+ gem "database_cleaner", "~> 2"
9
+ gem "pg", "~> 1.5"
10
+ gem "pry", "~> 0.13"
11
+ gem "rake", "~> 13"
12
+ gem "rspec-rails", "~> 6.1"
13
+ gem "rubocop-rspec", "~> 2"
14
+ gem "simplecov", "~> 0.20"
6
15
  gem "activerecord", "~> 7.0", "< 7.1"
16
+ gem "base64"
17
+ gem "bigdecimal"
18
+ gem "drb"
19
+ gem "mutex_m"
7
20
 
8
21
  gemspec path: "../"