forked from KensoDev/cancancan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cancancan.gemspec
31 lines (26 loc) · 1.23 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
30
31
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$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 = ["Bryan Rite", "Ryan Bates"]
s.email = "[email protected]"
s.homepage = "https://github.com/CanCanCommunity/cancancan"
s.summary = "Simple authorization solution for Rails."
s.description = "Continuation of the simple authorization solution for Rails which is decoupled from user roles. All permissions are stored in a single location."
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.files = `git ls-files`.split($/)
s.test_files = `git ls-files -- Appraisals {spec,features,gemfiles}/*`.split($/)
s.executables = `git ls-files -- bin/*`.split($/).map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.8.7")
s.required_rubygems_version = ">= 1.3.4"
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'rake', '~> 10.1.1'
s.add_development_dependency 'rspec', '~> 3.0.0'
s.add_development_dependency 'appraisal', '>= 1.0.0'
s.rubyforge_project = s.name
end