mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
# frozen_string_literal: true
|
|
|
|
lib = File.expand_path('lib', __dir__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'cancan/version'
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'cancancan'
|
|
s.version = CanCan::VERSION
|
|
s.authors = ['Alessandro Rodi (Renuo AG)', 'Bryan Rite', 'Ryan Bates', 'Richard Wilson']
|
|
s.email = 'alessandro.rodi@renuo.ch'
|
|
s.homepage = 'https://github.com/CanCanCommunity/cancancan'
|
|
s.metadata = { 'funding_uri' => 'https://github.com/sponsors/coorasse' }
|
|
s.summary = 'Simple authorization solution for Rails.'
|
|
s.description = 'Simple authorization solution for Rails. All permissions are stored in a single location.'
|
|
s.platform = Gem::Platform::RUBY
|
|
s.license = 'MIT'
|
|
|
|
s.files = `git ls-files lib init.rb cancancan.gemspec`.split($INPUT_RECORD_SEPARATOR)
|
|
s.require_paths = ['lib']
|
|
|
|
s.required_ruby_version = '>= 2.2.0'
|
|
|
|
s.add_development_dependency 'appraisal', '~> 2.0', '>= 2.0.0'
|
|
s.add_development_dependency 'bundler', '~> 2.0'
|
|
s.add_development_dependency 'rake', '~> 10.1', '>= 10.1.1'
|
|
s.add_development_dependency 'rspec', '~> 3.2', '>= 3.2.0'
|
|
s.add_development_dependency 'rubocop', '~> 1.31.1'
|
|
end
|