ae_declarative_authorization 1.2.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: caa500b6aa8d1cae25c644f1378138d8f638f8ce8a61ac0889c4a37dd10fe631
4
- data.tar.gz: 00d2f33f960bd9e3adeb82755a7792d4308c35924986d850416c4061f667f4db
3
+ metadata.gz: 58d5ae47fcb1b37a3bc09ff1f327c5b4bc1c17e0e10dfb41abe7b320d05455df
4
+ data.tar.gz: eedc2584682aa79790b12236a070d14799e85102706db150239c58f460a962d7
5
5
  SHA512:
6
- metadata.gz: b1f87bbeef702e7b285c8f41e77b9f4db377e3519cda8d19ca41e86d58cf23e40c943f5255c8737343a88b4add9981a6e32e24818544ee9f00b601b8ac30cb09
7
- data.tar.gz: e3144232138e1876fe86d682c978c4a3d046994377f112cea9d87fcdb21fba10757bfe6687ddd881f8598b4b674b363b342d8f4e4d3c24999fa7bc1853110a22
6
+ metadata.gz: 3610179d19f7119d9639a7b3c4423bcc2230c5298f88c1de8ffa8bd66d5213a276fabe6162a68deec057c8457b3b094cb221703617fe841a6bd134672ae9ed8b
7
+ data.tar.gz: 1354377a7af061f622fba2970f327d24e725f418738bc9294580237a72201157eb5a9ef4cc4eac183b24d3278cbcd7049fbfc387adc58dc74e17741bf7fc2ea5
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2023 AppFolio, Inc., Steffen Bartsch
1
+ Copyright (c) 2017-2024 AppFolio, Inc., Steffen Bartsch
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -3,21 +3,21 @@
3
3
  require_relative 'lib/declarative_authorization/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = 'ae_declarative_authorization'
7
- spec.version = DeclarativeAuthorization::VERSION
8
- spec.platform = Gem::Platform::RUBY
9
- spec.author = 'AppFolio'
10
- spec.email = 'opensource@appfolio.com'
11
- spec.description = 'Rails gem for maintainable authorization based on readable authorization rules.'
12
- spec.summary = spec.description
13
- spec.homepage = 'https://github.com/appfolio/ae_declarative_authorization'
14
- spec.license = 'MIT'
15
- spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
16
- spec.require_paths = ['lib']
17
- spec.required_ruby_version = Gem::Requirement.new('>= 2.6.3')
6
+ spec.name = 'ae_declarative_authorization'
7
+ spec.version = DeclarativeAuthorization::VERSION
8
+ spec.platform = Gem::Platform::RUBY
9
+ spec.author = 'AppFolio'
10
+ spec.email = 'opensource@appfolio.com'
11
+ spec.description = 'Rails gem for maintainable authorization based on readable authorization rules.'
12
+ spec.summary = spec.description
13
+ spec.homepage = 'https://github.com/appfolio/ae_declarative_authorization'
14
+ spec.license = 'MIT'
15
+ spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|.*gemspec)}] }
16
+ spec.require_paths = ['lib']
18
17
 
18
+ spec.required_ruby_version = Gem::Requirement.new('< 3.4')
19
19
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
20
20
 
21
21
  spec.add_dependency('blockenspiel', ['>= 0.5', '< 1'])
22
- spec.add_dependency('rails', ['>= 6.1', '< 7.2'])
22
+ spec.add_dependency('rails', ['>= 6.1', '< 7.3'])
23
23
  end
@@ -1,3 +1,3 @@
1
1
  module DeclarativeAuthorization
2
- VERSION = '1.2.0'.freeze
2
+ VERSION = '1.4.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ae_declarative_authorization
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-24 00:00:00.000000000 Z
11
+ date: 2024-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: blockenspiel
@@ -39,7 +39,7 @@ dependencies:
39
39
  version: '6.1'
40
40
  - - "<"
41
41
  - !ruby/object:Gem::Version
42
- version: '7.2'
42
+ version: '7.3'
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: '6.1'
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
- version: '7.2'
52
+ version: '7.3'
53
53
  description: Rails gem for maintainable authorization based on readable authorization
54
54
  rules.
55
55
  email: opensource@appfolio.com
@@ -89,16 +89,16 @@ require_paths:
89
89
  - lib
90
90
  required_ruby_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
- - - ">="
92
+ - - "<"
93
93
  - !ruby/object:Gem::Version
94
- version: 2.6.3
94
+ version: '3.4'
95
95
  required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  requirements:
97
97
  - - ">="
98
98
  - !ruby/object:Gem::Version
99
99
  version: '0'
100
100
  requirements: []
101
- rubygems_version: 3.4.17
101
+ rubygems_version: 3.5.7
102
102
  signing_key:
103
103
  specification_version: 4
104
104
  summary: Rails gem for maintainable authorization based on readable authorization