sequel_paranoia 0.0.4 → 0.0.5
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 +8 -8
- data/lib/sequel_paranoia/version.rb +1 -1
- data/sequel_paranoia.gemspec +3 -3
- metadata +10 -5
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ODFlOWMzYTYxMzE4YjQ0YjMwOTM4ODYwOTc4ZTRkYTJjNTU5ZGViMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NzcxN2IxMWUwYzk3YjhlYTA2ZWMwMjY3NDZiMjRlZDk5OGQ4YTNlYg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OGE1YjNjNDAwMTExZjlkNjQ1NDMyMjY3ZTRjM2YxMjBmZDJhMDY3NmU3NDRh
|
|
10
|
+
ZGY4NWQ4ZDYxNDZhNjY5ODMzOGEwMmI0YWYwMTNjZDE1NjU2ZDkwNjgwMjk1
|
|
11
|
+
MzRjYzE5NDAzY2UzZTkwYzEzZmMzNWJkNDQwNGZjMjcyOGYwY2E=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZmEyYWU5NDM3YjdlOTgxNmY1YWVjZjRhZDA2ZDYzNjkwNTA1NjUzMTgzODA2
|
|
14
|
+
MGNmNTJlYTVmODAzYzdiOWQ4YWQ4MjdlODY1ZjZkZDZhZmQyNmY0M2ZlMDdl
|
|
15
|
+
OWE3ZmE0NWVhMTQ1YzA5NGJkOTliY2I1YmNhOWQ2NDZjYzQ2ZDE=
|
data/sequel_paranoia.gemspec
CHANGED
|
@@ -10,9 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["MishaAConway@gmail.com"]
|
|
11
11
|
spec.description = <<EOF
|
|
12
12
|
Works like ActiveRecord's acts_as_paranoid, but for sequel.
|
|
13
|
-
|
|
13
|
+
-
|
|
14
14
|
I am not the original author of this plugin. I merely took the source, fixed one minor bug, and put it up on rubygems because I found it so useful.
|
|
15
|
-
The original author is at https://gist.github.com/bgentry.
|
|
15
|
+
The original author is at https://gist.github.com/bgentry. To automatically use deleted_at as as a soft delete field, simply setup as such: Sequel::Model.plugin :paranoia.
|
|
16
16
|
|
|
17
17
|
EOF
|
|
18
18
|
|
|
@@ -20,7 +20,7 @@ EOF
|
|
|
20
20
|
Works like ActiveRecord's acts_as_paranoid, but for sequel.
|
|
21
21
|
|
|
22
22
|
I am not the original author of this plugin. I merely took the source, fixed one minor bug, and put it up on rubygems because I found it so useful.
|
|
23
|
-
The original author is at https://gist.github.com/bgentry.
|
|
23
|
+
The original author is at https://gist.github.com/bgentry. To automatically use deleted_at as as a soft delete field, simply setup as such: Sequel::Model.plugin :paranoia.
|
|
24
24
|
|
|
25
25
|
EOF
|
|
26
26
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sequel_paranoia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Misha Conway
|
|
@@ -40,11 +40,14 @@ dependencies:
|
|
|
40
40
|
prerelease: false
|
|
41
41
|
description: ! ' Works like ActiveRecord''s acts_as_paranoid, but for sequel.
|
|
42
42
|
|
|
43
|
+
-
|
|
43
44
|
|
|
44
45
|
I am not the original author of this plugin. I merely took the source, fixed one
|
|
45
46
|
minor bug, and put it up on rubygems because I found it so useful.
|
|
46
47
|
|
|
47
|
-
The original author is at https://gist.github.com/bgentry.
|
|
48
|
+
The original author is at https://gist.github.com/bgentry. To automatically use
|
|
49
|
+
deleted_at as as a soft delete field, simply setup as such: Sequel::Model.plugin
|
|
50
|
+
:paranoia.
|
|
48
51
|
|
|
49
52
|
|
|
50
53
|
'
|
|
@@ -85,7 +88,9 @@ rubyforge_project:
|
|
|
85
88
|
rubygems_version: 2.0.3
|
|
86
89
|
signing_key:
|
|
87
90
|
specification_version: 4
|
|
88
|
-
summary: Works like ActiveRecord's acts_as_paranoid, but for sequel. I am not
|
|
89
|
-
original author of this plugin. I merely took the source, fixed one minor bug,
|
|
90
|
-
put it up on rubygems because I found it so useful. The original author is at
|
|
91
|
+
summary: ! 'Works like ActiveRecord''s acts_as_paranoid, but for sequel. I am not
|
|
92
|
+
the original author of this plugin. I merely took the source, fixed one minor bug,
|
|
93
|
+
and put it up on rubygems because I found it so useful. The original author is at
|
|
94
|
+
https://gist.github.com/bgentry. To automatically use deleted_at as as a soft delete
|
|
95
|
+
field, simply setup as such: Sequel::Model.plugin :paranoia.'
|
|
91
96
|
test_files: []
|