sequel_paranoia 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/sequel_paranoia/version.rb +1 -1
- data/sequel_paranoia.gemspec +16 -2
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MTFmMTMzNzEwZTMyMTJmOTYwOTI5ZGUwNDA2Y2JjZmY0ZjhlNjM2NQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTQwMTVmNzIwZjM2MzIxNGZkOWZmOTgzNzc1NGI5NjEyN2FlYWU5YQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YWI1YmMxOGU2NTc0NmQwYzQxZjhkMzM1YWZkMDEyMjcyMzk1YjYyYTU0MGFk
|
10
|
+
OWEzODI1ZTNiMGQyYTUxYjY2ZDMwYWMzYTA2Y2NlOWJkZmI0YTgwMGY2MTc3
|
11
|
+
NzhmZDkyZTAxOTI4ZTU1ODM5YmY1N2E5NzVlMDdiOGE4NzA1ODM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MThkM2ViZDQ1ZDQzMDRlNTI2MmJjZWQzYzM0ZjhhMmQ0MTc0Njg4NmMzZjhh
|
14
|
+
YTdkNzUzNGUwZmVmOWUwMzVmYWZmOTk4NjY2MGI3YzhlYjhlYmM1Mjg3NGM4
|
15
|
+
MmNmY2ZlMzJhYjk2NDBmOTMyYjViNWJhNjMxMGJiNjMwNGM4OTk=
|
data/sequel_paranoia.gemspec
CHANGED
@@ -8,8 +8,22 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = SequelParanoia::VERSION
|
9
9
|
spec.authors = ["Misha Conway"]
|
10
10
|
spec.email = ["MishaAConway@gmail.com"]
|
11
|
-
spec.description =
|
12
|
-
|
11
|
+
spec.description = <<EOF
|
12
|
+
Works like ActiveRecord's acts_as_paranoid, but for sequel.
|
13
|
+
|
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.
|
16
|
+
|
17
|
+
EOF
|
18
|
+
|
19
|
+
spec.summary = <<EOF
|
20
|
+
Works like ActiveRecord's acts_as_paranoid, but for sequel.
|
21
|
+
|
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.
|
24
|
+
|
25
|
+
EOF
|
26
|
+
|
13
27
|
spec.homepage = ""
|
14
28
|
spec.license = "MIT"
|
15
29
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Misha Conway
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-05-
|
11
|
+
date: 2013-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,10 +38,16 @@ dependencies:
|
|
38
38
|
version: '0'
|
39
39
|
type: :development
|
40
40
|
prerelease: false
|
41
|
-
description: ! 'Works like ActiveRecord''s acts_as_paranoid, but for sequel.
|
42
|
-
|
43
|
-
|
44
|
-
|
41
|
+
description: ! ' Works like ActiveRecord''s acts_as_paranoid, but for sequel.
|
42
|
+
|
43
|
+
|
44
|
+
I am not the original author of this plugin. I merely took the source, fixed one
|
45
|
+
minor bug, and put it up on rubygems because I found it so useful.
|
46
|
+
|
47
|
+
The original author is at https://gist.github.com/bgentry.
|
48
|
+
|
49
|
+
|
50
|
+
'
|
45
51
|
email:
|
46
52
|
- MishaAConway@gmail.com
|
47
53
|
executables: []
|
@@ -79,7 +85,7 @@ rubyforge_project:
|
|
79
85
|
rubygems_version: 2.0.3
|
80
86
|
signing_key:
|
81
87
|
specification_version: 4
|
82
|
-
summary: Works like ActiveRecord's acts_as_paranoid, but for sequel.
|
88
|
+
summary: Works like ActiveRecord's acts_as_paranoid, but for sequel. I am not the
|
83
89
|
original author of this plugin. I merely took the source, fixed one minor bug, and
|
84
90
|
put it up on rubygems because I found it so useful. The original author is at https://gist.github.com/bgentry.
|
85
91
|
test_files: []
|