forked from rajeevkannav/zero_authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzero_authorization.gemspec
More file actions
18 lines (16 loc) · 956 Bytes
/
zero_authorization.gemspec
File metadata and controls
18 lines (16 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "zero_authorization"
spec.version = "1.4.1"
spec.authors = ["Mike Bijon", "Rajeev Kannav Sharma", "Praveen Kumar Sinha"]
spec.email = ["rajeevsharma86@gmail.com", "praveen.kumar.sinha@gmail.com"]
spec.description = "Functionality to add authorization on Rails model write operations plus any other set of defined methods."
spec.summary = "How to setup: Specify what any specific role of current root entity(logged_user) can do/can't do in roles_n_privileges.yml and (re-)boot application."
spec.homepage = "https://github.com/WorkingGroupLink/zero_authorization"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.require_paths = ["lib"]
spec.add_development_dependency 'bundler', "~> 1.3"
spec.add_development_dependency 'rake', '~> 10'
spec.add_development_dependency 'activesupport', '~> 4'
end