acts_as_removable 3.2.0 → 3.4.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 +4 -4
- data/.github/workflows/workflow.yml +9 -10
- data/.rubocop.yml +1 -1
- data/Changelog.md +14 -0
- data/LICENSE +1 -1
- data/acts_as_removable.gemspec +3 -3
- data/gemfiles/{rails52 → rails71} +1 -1
- data/gemfiles/{rails60 → rails72} +1 -1
- data/gemfiles/{rails61 → rails80} +1 -1
- data/lib/acts_as_removable/version.rb +1 -1
- metadata +18 -19
- data/gemfiles/rails70 +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a348ffcf00a1806037a6ac6086426a8e7f5ca9cde02d54e477c3cf48558d74f
|
4
|
+
data.tar.gz: 162513fb446823de07e30472b0d6068759a381a1d337f55931502999c61c744d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcb1ea85219596c78cb92e931345e8c3fec510dfe0de0073e561eeb4e8248f786d07f5448bf4fc40db0f6076c66c6a36b9b55056ffcf25f07198d28c7695de9c
|
7
|
+
data.tar.gz: c2f6559c7852aeda1d9ed0733e1a028509900af21881ca2cfe16b12de5b26a4e12bf4dc7b5f66016a3f6d8edf850d5b2d1fb67d5d0b1d079659048abcb4243c8
|
@@ -7,20 +7,19 @@ jobs:
|
|
7
7
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}
|
8
8
|
strategy:
|
9
9
|
matrix:
|
10
|
-
ruby: [
|
10
|
+
ruby: [3.1, 3.2, 3.3, 3.4]
|
11
11
|
gemfile:
|
12
|
-
-
|
13
|
-
-
|
14
|
-
-
|
15
|
-
- rails70
|
12
|
+
- rails71
|
13
|
+
- rails72
|
14
|
+
- rails80
|
16
15
|
exclude:
|
17
|
-
- ruby:
|
18
|
-
gemfile:
|
19
|
-
- ruby: 3.
|
20
|
-
gemfile:
|
16
|
+
- ruby: 3.1
|
17
|
+
gemfile: rails80
|
18
|
+
- ruby: 3.2
|
19
|
+
gemfile: rails80
|
21
20
|
|
22
21
|
steps:
|
23
|
-
- uses: actions/checkout@
|
22
|
+
- uses: actions/checkout@v4
|
24
23
|
- uses: ruby/setup-ruby@v1
|
25
24
|
with:
|
26
25
|
ruby-version: ${{ matrix.ruby }}
|
data/.rubocop.yml
CHANGED
data/Changelog.md
CHANGED
@@ -3,6 +3,20 @@ Changelog
|
|
3
3
|
|
4
4
|
#### Unreleased
|
5
5
|
|
6
|
+
#### 3.4.0 (2025-01-09)
|
7
|
+
* Support for Rails 7.2 & 8.0
|
8
|
+
* Require Rails >= 7.1.0
|
9
|
+
* Require Ruby >= 3.1.0
|
10
|
+
* Update copyright year
|
11
|
+
|
12
|
+
#### 3.3.0 (2023-10-11)
|
13
|
+
* Support for Rails 7.1
|
14
|
+
* Require Ruby >= 2.7.0
|
15
|
+
* Require Rails >= 6.1
|
16
|
+
* Test against Ruby 3.1 + 3.2
|
17
|
+
* Update Actions config
|
18
|
+
* Update copyright year
|
19
|
+
|
6
20
|
#### 3.2.0 (2021-12-16)
|
7
21
|
* Support for Rails 7.0
|
8
22
|
* (Update travis config) -> see below
|
data/LICENSE
CHANGED
data/acts_as_removable.gemspec
CHANGED
@@ -20,10 +20,10 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
21
|
spec.require_paths = ['lib']
|
22
22
|
|
23
|
-
spec.required_ruby_version = '>=
|
23
|
+
spec.required_ruby_version = '>= 3.1.0'
|
24
24
|
|
25
|
-
spec.add_dependency 'activerecord', '>=
|
26
|
-
spec.add_dependency 'activesupport', '>=
|
25
|
+
spec.add_dependency 'activerecord', '>= 7.1', '< 8.1'
|
26
|
+
spec.add_dependency 'activesupport', '>= 7.1', '< 8.1'
|
27
27
|
|
28
28
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
29
29
|
spec.add_development_dependency 'rake'
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acts_as_removable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Schwab
|
8
8
|
- Erik-B. Ernst
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-01-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|
@@ -17,40 +17,40 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
20
|
+
version: '7.1'
|
21
21
|
- - "<"
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
23
|
+
version: '8.1'
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
27
|
requirements:
|
28
28
|
- - ">="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
version: '
|
30
|
+
version: '7.1'
|
31
31
|
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '8.1'
|
34
34
|
- !ruby/object:Gem::Dependency
|
35
35
|
name: activesupport
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '7.1'
|
41
41
|
- - "<"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: '
|
43
|
+
version: '8.1'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
46
|
version_requirements: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: '
|
50
|
+
version: '7.1'
|
51
51
|
- - "<"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
53
|
+
version: '8.1'
|
54
54
|
- !ruby/object:Gem::Dependency
|
55
55
|
name: bundler
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
@@ -152,10 +152,9 @@ files:
|
|
152
152
|
- README.md
|
153
153
|
- Rakefile
|
154
154
|
- acts_as_removable.gemspec
|
155
|
-
- gemfiles/
|
156
|
-
- gemfiles/
|
157
|
-
- gemfiles/
|
158
|
-
- gemfiles/rails70
|
155
|
+
- gemfiles/rails71
|
156
|
+
- gemfiles/rails72
|
157
|
+
- gemfiles/rails80
|
159
158
|
- lib/acts_as_removable.rb
|
160
159
|
- lib/acts_as_removable/version.rb
|
161
160
|
- spec/acts_as_removable_spec.rb
|
@@ -164,7 +163,7 @@ homepage: https://github.com/SICSoftwareGmbH/acts_as_removable
|
|
164
163
|
licenses:
|
165
164
|
- MIT
|
166
165
|
metadata: {}
|
167
|
-
post_install_message:
|
166
|
+
post_install_message:
|
168
167
|
rdoc_options: []
|
169
168
|
require_paths:
|
170
169
|
- lib
|
@@ -172,15 +171,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
172
171
|
requirements:
|
173
172
|
- - ">="
|
174
173
|
- !ruby/object:Gem::Version
|
175
|
-
version:
|
174
|
+
version: 3.1.0
|
176
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
176
|
requirements:
|
178
177
|
- - ">="
|
179
178
|
- !ruby/object:Gem::Version
|
180
179
|
version: '0'
|
181
180
|
requirements: []
|
182
|
-
rubygems_version: 3.
|
183
|
-
signing_key:
|
181
|
+
rubygems_version: 3.5.22
|
182
|
+
signing_key:
|
184
183
|
specification_version: 4
|
185
184
|
summary: Simplifies handling of pseudo removed records.
|
186
185
|
test_files:
|