paranoia 2.2.0.pre → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/paranoia/version.rb +1 -1
- data/paranoia.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4840070148649d6ad07f0342b48a031fdf25827
|
4
|
+
data.tar.gz: 25ae25c52215d9cc78ab55756baa09f79255b283
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea4f3ab508171f21e047ded352fabb8b0f6f5821746054d00dcc5b733f3150f069086ccdbf892ad3c79aec071609839dba4676eaab73941f7b2b23b49639b46c
|
7
|
+
data.tar.gz: 732a2fe402b9d718cecf2968068adf2a83c7486cac87127684d92736b0d39b9352a433ae69e062c90665fd4b93a5cb4cbfe40d38d3f46a1efaf4b9374185bb2c
|
data/README.md
CHANGED
@@ -20,10 +20,10 @@ For Rails 3, please use version 1 of Paranoia:
|
|
20
20
|
gem "paranoia", "~> 1.0"
|
21
21
|
```
|
22
22
|
|
23
|
-
For Rails 4
|
23
|
+
For Rails 4 and 5, please use version 2 of Paranoia (2.2 or greater required for rails 5):
|
24
24
|
|
25
25
|
``` ruby
|
26
|
-
gem "paranoia", "~> 2.
|
26
|
+
gem "paranoia", "~> 2.2"
|
27
27
|
```
|
28
28
|
|
29
29
|
Of course you can install this from GitHub as well from one of these examples:
|
data/lib/paranoia/version.rb
CHANGED
data/paranoia.gemspec
CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.version = Paranoia::VERSION
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = %w(radarlistener@gmail.com)
|
9
|
-
s.email = %w(ben@benmorgan.io)
|
10
|
-
s.homepage = "
|
9
|
+
s.email = %w(ben@benmorgan.io john.hawthorn@gmail.com)
|
10
|
+
s.homepage = "https://github.com/rubysherpas/paranoia"
|
11
11
|
s.license = 'MIT'
|
12
12
|
s.summary = "Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5, using much, much, much less code."
|
13
13
|
s.description = <<-DSC
|
@@ -20,8 +20,8 @@ Gem::Specification.new do |s|
|
|
20
20
|
which do not have a deleted_at field.
|
21
21
|
DSC
|
22
22
|
|
23
|
-
|
24
23
|
s.required_rubygems_version = ">= 1.3.6"
|
24
|
+
|
25
25
|
s.required_ruby_version = '>= 2.0'
|
26
26
|
|
27
27
|
s.add_dependency 'activerecord', '>= 4.0', '< 5.1'
|
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.2.0
|
4
|
+
version: 2.2.0
|
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: 2016-
|
11
|
+
date: 2016-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -68,6 +68,7 @@ description: |2
|
|
68
68
|
which do not have a deleted_at field.
|
69
69
|
email:
|
70
70
|
- ben@benmorgan.io
|
71
|
+
- john.hawthorn@gmail.com
|
71
72
|
executables: []
|
72
73
|
extensions: []
|
73
74
|
extra_rdoc_files: []
|
@@ -85,7 +86,7 @@ files:
|
|
85
86
|
- lib/paranoia/version.rb
|
86
87
|
- paranoia.gemspec
|
87
88
|
- test/paranoia_test.rb
|
88
|
-
homepage:
|
89
|
+
homepage: https://github.com/rubysherpas/paranoia
|
89
90
|
licenses:
|
90
91
|
- MIT
|
91
92
|
metadata: {}
|
@@ -105,10 +106,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
106
|
version: 1.3.6
|
106
107
|
requirements: []
|
107
108
|
rubyforge_project:
|
108
|
-
rubygems_version: 2.
|
109
|
+
rubygems_version: 2.5.1
|
109
110
|
signing_key:
|
110
111
|
specification_version: 4
|
111
112
|
summary: Paranoia is a re-implementation of acts_as_paranoid for Rails 3, 4, and 5,
|
112
113
|
using much, much, much less code.
|
113
114
|
test_files: []
|
114
|
-
has_rdoc:
|