-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathacl9.gemspec
More file actions
26 lines (20 loc) · 1.12 KB
/
acl9.gemspec
File metadata and controls
26 lines (20 loc) · 1.12 KB
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
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "acl9/version"
Gem::Specification.new do |s|
s.authors = ["oleg dashevskii", "Jason King"]
s.email = ["olegdashevskii@gmail.com", "jk@handle.it"]
s.description = "Role-based authorization system for Rails with a concise DSL for securing your Rails application. Acl9 makes it easy to get security right for your app, the access control code sits right in your controller, the syntax is very easy to understand, and acl9 makes it easy to test your access rules."
s.summary = "Role-based authorization system for Rails with a concise DSL for securing your Rails application."
s.homepage = "http://github.com/be9/acl9"
s.files = `git ls-files`.split($\)
s.test_files = s.files.grep(%r{^test/})
s.name = "acl9"
s.require_paths = ["lib"]
s.version = Acl9::VERSION
s.license = 'MIT'
s.required_ruby_version = ">= 2"
s.rdoc_options = ["--charset=UTF-8"]
s.add_dependency "rails", '>= 5.0'
s.add_development_dependency "yard"
end