thwart 0.0.0 → 0.0.1
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/thwart.gemspec +92 -0
- metadata +4 -3
data/thwart.gemspec
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{thwart}
|
|
8
|
+
s.version = "0.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Harry Brundage"]
|
|
12
|
+
s.date = %q{2010-08-10}
|
|
13
|
+
s.description = %q{Implements a robust Role Based Access System where Actors are granted permission to preform Actions by playing any number of Roles. All defined programatically in one place using a super easy DSL.}
|
|
14
|
+
s.email = %q{harry@skylightlabs.ca}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"autotest/discover.rb",
|
|
27
|
+
"examples/a_complete_example.rb",
|
|
28
|
+
"examples/example_helper.rb",
|
|
29
|
+
"lib/thwart.rb",
|
|
30
|
+
"lib/thwart/action_group_builder.rb",
|
|
31
|
+
"lib/thwart/actions_store.rb",
|
|
32
|
+
"lib/thwart/actor.rb",
|
|
33
|
+
"lib/thwart/canable.rb",
|
|
34
|
+
"lib/thwart/dsl.rb",
|
|
35
|
+
"lib/thwart/enforcer.rb",
|
|
36
|
+
"lib/thwart/resource.rb",
|
|
37
|
+
"lib/thwart/role.rb",
|
|
38
|
+
"lib/thwart/role_builder.rb",
|
|
39
|
+
"lib/thwart/role_registry.rb",
|
|
40
|
+
"spec/action_group_builder_spec.rb",
|
|
41
|
+
"spec/actions_store_spec.rb",
|
|
42
|
+
"spec/actor_spec.rb",
|
|
43
|
+
"spec/canable_spec.rb",
|
|
44
|
+
"spec/dsl_spec.rb",
|
|
45
|
+
"spec/enforcer_spec.rb",
|
|
46
|
+
"spec/resource_spec.rb",
|
|
47
|
+
"spec/role_builder_spec.rb",
|
|
48
|
+
"spec/role_registry_spec.rb",
|
|
49
|
+
"spec/role_spec.rb",
|
|
50
|
+
"spec/spec_helper.rb",
|
|
51
|
+
"spec/thwart_spec.rb",
|
|
52
|
+
"thwart.gemspec"
|
|
53
|
+
]
|
|
54
|
+
s.homepage = %q{http://github.com/hornairs/thwart}
|
|
55
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
56
|
+
s.require_paths = ["lib"]
|
|
57
|
+
s.rubygems_version = %q{1.3.7}
|
|
58
|
+
s.summary = %q{A simple, powerful, and developer friendly authorization plugin. Still WIP.}
|
|
59
|
+
s.test_files = [
|
|
60
|
+
"spec/action_group_builder_spec.rb",
|
|
61
|
+
"spec/actions_store_spec.rb",
|
|
62
|
+
"spec/actor_spec.rb",
|
|
63
|
+
"spec/canable_spec.rb",
|
|
64
|
+
"spec/dsl_spec.rb",
|
|
65
|
+
"spec/enforcer_spec.rb",
|
|
66
|
+
"spec/resource_spec.rb",
|
|
67
|
+
"spec/role_builder_spec.rb",
|
|
68
|
+
"spec/role_registry_spec.rb",
|
|
69
|
+
"spec/role_spec.rb",
|
|
70
|
+
"spec/spec_helper.rb",
|
|
71
|
+
"spec/thwart_spec.rb",
|
|
72
|
+
"examples/a_complete_example.rb",
|
|
73
|
+
"examples/example_helper.rb"
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
if s.respond_to? :specification_version then
|
|
77
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
78
|
+
s.specification_version = 3
|
|
79
|
+
|
|
80
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
81
|
+
s.add_development_dependency(%q<rspec>, [">= 2.0.0.beta19"])
|
|
82
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 3.0.rc1"])
|
|
83
|
+
else
|
|
84
|
+
s.add_dependency(%q<rspec>, [">= 2.0.0.beta19"])
|
|
85
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.rc1"])
|
|
86
|
+
end
|
|
87
|
+
else
|
|
88
|
+
s.add_dependency(%q<rspec>, [">= 2.0.0.beta19"])
|
|
89
|
+
s.add_dependency(%q<activesupport>, [">= 3.0.rc1"])
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Harry Brundage
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-08-
|
|
17
|
+
date: 2010-08-10 00:00:00 -04:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -90,6 +90,7 @@ files:
|
|
|
90
90
|
- spec/role_spec.rb
|
|
91
91
|
- spec/spec_helper.rb
|
|
92
92
|
- spec/thwart_spec.rb
|
|
93
|
+
- thwart.gemspec
|
|
93
94
|
has_rdoc: true
|
|
94
95
|
homepage: http://github.com/hornairs/thwart
|
|
95
96
|
licenses: []
|