slow_your_roles 2.0.2 → 2.0.4
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 +4 -0
- data/Gemfile.lock +15 -15
- data/Rakefile +1 -1
- data/slow_your_roles.gemspec +5 -3
- metadata +17 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 136703e3e4853004a9d9622f0532a6562bc26af5616104f7950ca8233f8a85a6
|
4
|
+
data.tar.gz: 41e3ed73e09341816ec9d6a34c5f2588b9408e7c4e1aa30ee27ba67fec70bcd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: addcf139067f348b823332a7268c65898173f7a35495f73da7f59a414e45511d90a7026aa0bc4ecc60cf60acfa77c120334e6487cfe36e5d9c6484b329a03fba
|
7
|
+
data.tar.gz: 7192b3c95f929c63ca2ef1dad14be807e150aba48a7ee2ebf752c54d22966a4f7b41365dc315f0708a693fc69719ad8387e4f321ca8b91a55819aab3c1413e29
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
### 28 September 2021 - Version 2.0.4
|
2
|
+
Bumped activerecord requirement to 6.0.3.5 for security purposes
|
3
|
+
Bumped rexml requirement to 3.2.5 for security purposes
|
4
|
+
|
1
5
|
### 2 June 2020 - Version 2.0.2
|
2
6
|
Fixed incompatibility issue with PostgresSQL when using serialize role method.
|
3
7
|
|
data/Gemfile.lock
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
slow_your_roles (2.0.
|
5
|
-
activesupport (>= 6.0.3.
|
4
|
+
slow_your_roles (2.0.4)
|
5
|
+
activesupport (~> 6.0, >= 6.0.3.5)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (6.0.3.
|
11
|
-
activesupport (= 6.0.3.
|
12
|
-
activerecord (6.0.3.
|
13
|
-
activemodel (= 6.0.3.
|
14
|
-
activesupport (= 6.0.3.
|
15
|
-
activesupport (6.0.3.
|
10
|
+
activemodel (6.0.3.5)
|
11
|
+
activesupport (= 6.0.3.5)
|
12
|
+
activerecord (6.0.3.5)
|
13
|
+
activemodel (= 6.0.3.5)
|
14
|
+
activesupport (= 6.0.3.5)
|
15
|
+
activesupport (6.0.3.5)
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
17
|
i18n (>= 0.7, < 2)
|
18
18
|
minitest (~> 5.1)
|
19
19
|
tzinfo (~> 1.1)
|
20
20
|
zeitwerk (~> 2.2, >= 2.2.2)
|
21
21
|
ast (2.4.0)
|
22
|
-
concurrent-ruby (1.1.
|
22
|
+
concurrent-ruby (1.1.8)
|
23
23
|
diff-lcs (1.3)
|
24
|
-
i18n (1.8.
|
24
|
+
i18n (1.8.9)
|
25
25
|
concurrent-ruby (~> 1.0)
|
26
26
|
jaro_winkler (1.5.4)
|
27
|
-
minitest (5.14.
|
27
|
+
minitest (5.14.4)
|
28
28
|
parallel (1.19.1)
|
29
29
|
parser (2.7.1.1)
|
30
30
|
ast (~> 2.4.0)
|
31
31
|
rainbow (3.0.0)
|
32
|
-
rexml (3.2.
|
32
|
+
rexml (3.2.5)
|
33
33
|
rspec (3.9.0)
|
34
34
|
rspec-core (~> 3.9.0)
|
35
35
|
rspec-expectations (~> 3.9.0)
|
@@ -54,16 +54,16 @@ GEM
|
|
54
54
|
ruby-progressbar (1.10.1)
|
55
55
|
sqlite3 (1.4.2)
|
56
56
|
thread_safe (0.3.6)
|
57
|
-
tzinfo (1.2.
|
57
|
+
tzinfo (1.2.9)
|
58
58
|
thread_safe (~> 0.1)
|
59
59
|
unicode-display_width (1.7.0)
|
60
|
-
zeitwerk (2.
|
60
|
+
zeitwerk (2.4.2)
|
61
61
|
|
62
62
|
PLATFORMS
|
63
63
|
ruby
|
64
64
|
|
65
65
|
DEPENDENCIES
|
66
|
-
activerecord (>= 6.0.3.
|
66
|
+
activerecord (~> 6.0, >= 6.0.3.5)
|
67
67
|
rspec
|
68
68
|
rubocop
|
69
69
|
slow_your_roles!
|
data/Rakefile
CHANGED
@@ -4,7 +4,7 @@ require 'rubygems'
|
|
4
4
|
require 'rake'
|
5
5
|
require 'echoe'
|
6
6
|
|
7
|
-
Echoe.new('slow_your_roles', '2.0.
|
7
|
+
Echoe.new('slow_your_roles', '2.0.4') do |p|
|
8
8
|
p.description = 'Easy role authorization in rails'
|
9
9
|
p.url = 'http://github.com/aarona/slow_your_roles'
|
10
10
|
p.author = 'Aaron A'
|
data/slow_your_roles.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'slow_your_roles'
|
5
|
-
s.version = '2.0.
|
5
|
+
s.version = '2.0.4'
|
6
6
|
s.authors = ['Aaron A']
|
7
7
|
s.date = '2020-04-21'
|
8
8
|
s.summary = 'Easy role authorization in Rails'
|
@@ -29,8 +29,10 @@ Gem::Specification.new do |s|
|
|
29
29
|
]
|
30
30
|
s.require_paths = ['lib']
|
31
31
|
|
32
|
-
s.add_runtime_dependency('activesupport', ['>= 6.0.3.
|
33
|
-
s.
|
32
|
+
# s.add_runtime_dependency('activesupport', ['>= 6.0.3.5'])
|
33
|
+
s.add_runtime_dependency 'activesupport', '~> 6.0', '>= 6.0.3.5'
|
34
|
+
# s.add_development_dependency('activerecord', ['>= 6.0.3.5'])
|
35
|
+
s.add_development_dependency 'activerecord', '~> 6.0', '>= 6.0.3.5'
|
34
36
|
s.add_development_dependency('rspec', ['>= 0'])
|
35
37
|
s.add_development_dependency('rubocop', ['>= 0'])
|
36
38
|
s.add_development_dependency('sqlite3', ['>= 0'])
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slow_your_roles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron A
|
@@ -14,30 +14,42 @@ dependencies:
|
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '6.0'
|
17
20
|
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.0.3.
|
22
|
+
version: 6.0.3.5
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '6.0'
|
24
30
|
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.0.3.
|
32
|
+
version: 6.0.3.5
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: activerecord
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '6.0'
|
31
40
|
- - ">="
|
32
41
|
- !ruby/object:Gem::Version
|
33
|
-
version: 6.0.3.
|
42
|
+
version: 6.0.3.5
|
34
43
|
type: :development
|
35
44
|
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '6.0'
|
38
50
|
- - ">="
|
39
51
|
- !ruby/object:Gem::Version
|
40
|
-
version: 6.0.3.
|
52
|
+
version: 6.0.3.5
|
41
53
|
- !ruby/object:Gem::Dependency
|
42
54
|
name: rspec
|
43
55
|
requirement: !ruby/object:Gem::Requirement
|