forked from CanCanCommunity/cancancan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cancancan.gemspec
29 lines (24 loc) · 1.19 KB
/
cancancan.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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.26'
end