Ruby-ACL 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/ACL_Object.rb +224 -0
- data/lib/Ruby-ACL.rb +908 -0
- data/lib/ace.rb +91 -0
- data/lib/ace_rule.rb +36 -0
- data/lib/group.rb +32 -0
- data/lib/individual.rb +14 -0
- data/lib/principal.rb +44 -0
- data/lib/privilege.rb +13 -0
- data/lib/resource_object.rb +208 -0
- data/lib/rubyacl_exception.rb +69 -0
- metadata +57 -0
metadata
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: Ruby-ACL
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Jenda Sirl
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-05-20 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: ! 'Ruby-ACL is library that handles access permisions. Ruby-ACL offers
|
|
15
|
+
to create and modify three ACL objects - three dimensions: Principal, Privilege,
|
|
16
|
+
Resource object.'
|
|
17
|
+
email: jan.sirl@seznam.cz
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- lib/ACL_Object.rb
|
|
23
|
+
- lib/Ruby-ACL.rb
|
|
24
|
+
- lib/ace.rb
|
|
25
|
+
- lib/ace_rule.rb
|
|
26
|
+
- lib/group.rb
|
|
27
|
+
- lib/individual.rb
|
|
28
|
+
- lib/principal.rb
|
|
29
|
+
- lib/privilege.rb
|
|
30
|
+
- lib/resource_object.rb
|
|
31
|
+
- lib/rubyacl_exception.rb
|
|
32
|
+
homepage: http://rubygems.org/gems/ruby-acl
|
|
33
|
+
licenses: []
|
|
34
|
+
post_install_message:
|
|
35
|
+
rdoc_options: []
|
|
36
|
+
require_paths:
|
|
37
|
+
- lib
|
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ! '>='
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
45
|
+
none: false
|
|
46
|
+
requirements:
|
|
47
|
+
- - ! '>='
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '0'
|
|
50
|
+
requirements: []
|
|
51
|
+
rubyforge_project:
|
|
52
|
+
rubygems_version: 1.8.16
|
|
53
|
+
signing_key:
|
|
54
|
+
specification_version: 3
|
|
55
|
+
summary: Easy Access Control List based on 3 dimensional concept. It needs XML database
|
|
56
|
+
and implemantion of API. e.g. eXist-db and eXistAPI.
|
|
57
|
+
test_files: []
|