-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdeclarative_authorization.gemspec
More file actions
23 lines (19 loc) · 1 KB
/
declarative_authorization.gemspec
File metadata and controls
23 lines (19 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require_relative 'lib/declarative_authorization/version'
Gem::Specification.new do |spec|
spec.name = 'ae_declarative_authorization'
spec.version = DeclarativeAuthorization::VERSION
spec.platform = Gem::Platform::RUBY
spec.author = 'AppFolio'
spec.email = 'opensource@appfolio.com'
spec.description = 'Rails gem for maintainable authorization based on readable authorization rules.'
spec.summary = spec.description
spec.homepage = 'https://github.com/appfolio/ae_declarative_authorization'
spec.license = 'MIT'
spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|declarative_authorization\.gemspec|README.md|rubocop-decl-auth.yml)}] }
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('< 4.1')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.add_dependency('blockenspiel', ['>= 0.5', '< 1'])
spec.add_dependency('rails', ['>= 7.2', '< 8.2'])
end