Sha256: 11b538cfaf01c5fae79043ab0684fbf7613c9d71fa79d332bb65eea78ae5f66c
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
# -*- 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', '< 7.0' s.add_development_dependency "yard" s.add_development_dependency 'sqlite3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acl9-3.2.0 | acl9.gemspec |