paranoia 2.5.2 → 2.5.3
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/CHANGELOG.md +11 -2
- data/lib/paranoia/rspec.rb +2 -2
- data/lib/paranoia/version.rb +1 -1
- data/lib/paranoia.rb +6 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a82e404509dd15068040f391a794122bc66343af8def462f0eb4e37851b670f
|
4
|
+
data.tar.gz: fe04b171c8d485c18a4d41b2603780dfe15efebe1b3fd72d2a9074d0463642ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e797a325e51bd15605087eae81c27c622df6b2b3e2c46466b6a3d2f4509e612a3712871e4140abb0530993b6773f59765cab1c10672572f3176c7e32401ecaab
|
7
|
+
data.tar.gz: b040f4ea08e809a827172755f7913da31a93aa5a9f7207ac9626fa9dadf848e36b352eb7084687cbee3a553c7f33124e434d291c900ffca3cfbe1dba340d0fb3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# paranoia Changelog
|
2
2
|
|
3
|
+
## 2.5.3
|
4
|
+
|
5
|
+
* [#532](https://github.com/rubysherpas/paranoia/pull/532) Fix: correct bug when sentinel_value is not a timestamp
|
6
|
+
[Hassanin Ahmed](https://github.com/sas1ni69)
|
7
|
+
* [#531](https://github.com/rubysherpas/paranoia/pull/531) Added test case to reproduce bug introduce in v2.5.1
|
8
|
+
[Sherif Elkassaby](https://github.com/sherif-nedap)
|
9
|
+
* [#529](https://github.com/rubysherpas/paranoia/pull/529) Fix: Do not define a RSpec matcher when RSpec isn't present
|
10
|
+
[Sebastian Welther](https://github.com/swelther)
|
11
|
+
|
3
12
|
## 2.5.2
|
4
13
|
|
5
14
|
* [#526](https://github.com/rubysherpas/paranoia/pull/526) Do not include tests files in packaged gem
|
@@ -19,7 +28,7 @@
|
|
19
28
|
|
20
29
|
* [#516](https://github.com/rubysherpas/paranoia/pull/516) Add support for ActiveRecord 7.0, drop support for EOL Ruby < 2.5 and Rails < 5.1
|
21
30
|
adding support for Rails 7
|
22
|
-
|
31
|
+
|
23
32
|
[Mathieu Jobin](https://github.com/mathieujobin)
|
24
33
|
* [#515](https://github.com/rubysherpas/paranoia/pull/515) Switch from Travis CI to GitHub Actions
|
25
34
|
|
@@ -31,7 +40,7 @@
|
|
31
40
|
|
32
41
|
[Jörg Schiller](https://github.com/joergschiller)
|
33
42
|
|
34
|
-
* [#483](https://github.com/rubysherpas/paranoia/pull/483) Update JRuby version to 9.2.8.0 + remove EOL Ruby 2.2
|
43
|
+
* [#483](https://github.com/rubysherpas/paranoia/pull/483) Update JRuby version to 9.2.8.0 + remove EOL Ruby 2.2
|
35
44
|
|
36
45
|
[Uwe Kubosch](https://github.com/donv)
|
37
46
|
|
data/lib/paranoia/rspec.rb
CHANGED
data/lib/paranoia/version.rb
CHANGED
data/lib/paranoia.rb
CHANGED
@@ -138,7 +138,7 @@ module Paranoia
|
|
138
138
|
end
|
139
139
|
|
140
140
|
def paranoia_destroyed?
|
141
|
-
|
141
|
+
paranoia_column_value != paranoia_sentinel_value
|
142
142
|
end
|
143
143
|
alias :deleted? :paranoia_destroyed?
|
144
144
|
|
@@ -296,12 +296,16 @@ ActiveSupport.on_load(:active_record) do
|
|
296
296
|
self.class.paranoia_column
|
297
297
|
end
|
298
298
|
|
299
|
+
def paranoia_column_value
|
300
|
+
send(paranoia_column)
|
301
|
+
end
|
302
|
+
|
299
303
|
def paranoia_sentinel_value
|
300
304
|
self.class.paranoia_sentinel_value
|
301
305
|
end
|
302
306
|
|
303
307
|
def deletion_time
|
304
|
-
|
308
|
+
paranoia_column_value.acts_like?(:time) ? paranoia_column_value : deleted_at
|
305
309
|
end
|
306
310
|
end
|
307
311
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paranoia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- radarlistener@gmail.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
- !ruby/object:Gem::Version
|
107
107
|
version: 1.3.6
|
108
108
|
requirements: []
|
109
|
-
rubygems_version: 3.
|
109
|
+
rubygems_version: 3.2.32
|
110
110
|
signing_key:
|
111
111
|
specification_version: 4
|
112
112
|
summary: Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5,
|