stonewall 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/stonewall.gemspec +80 -0
- metadata +17 -4
data/stonewall.gemspec
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{stonewall}
|
8
|
+
s.version = "0.3.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["bokmann"]
|
12
|
+
s.date = %q{2011-01-06}
|
13
|
+
s.description = %q{The acl from StoneWall, now as a shiny new gem!}
|
14
|
+
s.email = %q{dbock@codesherpas.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"design_notes.txt",
|
26
|
+
"lib/rails/active_record.rb",
|
27
|
+
"lib/stonewall.rb",
|
28
|
+
"lib/stonewall/access_controller.rb",
|
29
|
+
"lib/stonewall/access_violation_exception.rb",
|
30
|
+
"lib/stonewall/helpers.rb",
|
31
|
+
"lib/stonewall/parser.rb",
|
32
|
+
"lib/stonewall/stonewall.rb",
|
33
|
+
"lib/stonewall/user_extensions.rb",
|
34
|
+
"stonewall.gemspec",
|
35
|
+
"test/helper.rb",
|
36
|
+
"test/test_access_controller.rb",
|
37
|
+
"test/test_active_record_extensions.rb",
|
38
|
+
"test/test_guarded_class.rb",
|
39
|
+
"test/test_guarded_collection.rb",
|
40
|
+
"test/test_helpers.rb",
|
41
|
+
"test/test_parser.rb",
|
42
|
+
"test/test_stonewall.rb",
|
43
|
+
"test/test_user_extensions.rb"
|
44
|
+
]
|
45
|
+
s.homepage = %q{http://github.com/bokmann/stonewall}
|
46
|
+
s.require_paths = ["lib"]
|
47
|
+
s.rubygems_version = %q{1.3.7}
|
48
|
+
s.summary = %q{extracting the acl constructs from stonepath}
|
49
|
+
s.test_files = [
|
50
|
+
"test/helper.rb",
|
51
|
+
"test/test_access_controller.rb",
|
52
|
+
"test/test_active_record_extensions.rb",
|
53
|
+
"test/test_guarded_class.rb",
|
54
|
+
"test/test_guarded_collection.rb",
|
55
|
+
"test/test_helpers.rb",
|
56
|
+
"test/test_parser.rb",
|
57
|
+
"test/test_stonewall.rb",
|
58
|
+
"test/test_user_extensions.rb"
|
59
|
+
]
|
60
|
+
|
61
|
+
if s.respond_to? :specification_version then
|
62
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
63
|
+
s.specification_version = 3
|
64
|
+
|
65
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
66
|
+
s.add_runtime_dependency(%q<activerecord>, [">= 2.0.0", "< 2.4.0"])
|
67
|
+
s.add_runtime_dependency(%q<sentient_user>, [">= 0.1.0"])
|
68
|
+
s.add_development_dependency(%q<shoulda>, [">= 2.11.3"])
|
69
|
+
else
|
70
|
+
s.add_dependency(%q<activerecord>, [">= 2.0.0", "< 2.4.0"])
|
71
|
+
s.add_dependency(%q<sentient_user>, [">= 0.1.0"])
|
72
|
+
s.add_dependency(%q<shoulda>, [">= 2.11.3"])
|
73
|
+
end
|
74
|
+
else
|
75
|
+
s.add_dependency(%q<activerecord>, [">= 2.0.0", "< 2.4.0"])
|
76
|
+
s.add_dependency(%q<sentient_user>, [">= 0.1.0"])
|
77
|
+
s.add_dependency(%q<shoulda>, [">= 2.11.3"])
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stonewall
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
9
|
+
- 2
|
10
|
+
version: 0.3.2
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- bokmann
|
@@ -14,16 +15,18 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date:
|
18
|
+
date: 2011-01-06 00:00:00 -05:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: activerecord
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - ">="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 15
|
27
30
|
segments:
|
28
31
|
- 2
|
29
32
|
- 0
|
@@ -31,6 +34,7 @@ dependencies:
|
|
31
34
|
version: 2.0.0
|
32
35
|
- - <
|
33
36
|
- !ruby/object:Gem::Version
|
37
|
+
hash: 31
|
34
38
|
segments:
|
35
39
|
- 2
|
36
40
|
- 4
|
@@ -42,9 +46,11 @@ dependencies:
|
|
42
46
|
name: sentient_user
|
43
47
|
prerelease: false
|
44
48
|
requirement: &id002 !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
45
50
|
requirements:
|
46
51
|
- - ">="
|
47
52
|
- !ruby/object:Gem::Version
|
53
|
+
hash: 27
|
48
54
|
segments:
|
49
55
|
- 0
|
50
56
|
- 1
|
@@ -56,9 +62,11 @@ dependencies:
|
|
56
62
|
name: shoulda
|
57
63
|
prerelease: false
|
58
64
|
requirement: &id003 !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
59
66
|
requirements:
|
60
67
|
- - ">="
|
61
68
|
- !ruby/object:Gem::Version
|
69
|
+
hash: 37
|
62
70
|
segments:
|
63
71
|
- 2
|
64
72
|
- 11
|
@@ -90,6 +98,7 @@ files:
|
|
90
98
|
- lib/stonewall/parser.rb
|
91
99
|
- lib/stonewall/stonewall.rb
|
92
100
|
- lib/stonewall/user_extensions.rb
|
101
|
+
- stonewall.gemspec
|
93
102
|
- test/helper.rb
|
94
103
|
- test/test_access_controller.rb
|
95
104
|
- test/test_active_record_extensions.rb
|
@@ -109,23 +118,27 @@ rdoc_options: []
|
|
109
118
|
require_paths:
|
110
119
|
- lib
|
111
120
|
required_ruby_version: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
112
122
|
requirements:
|
113
123
|
- - ">="
|
114
124
|
- !ruby/object:Gem::Version
|
125
|
+
hash: 3
|
115
126
|
segments:
|
116
127
|
- 0
|
117
128
|
version: "0"
|
118
129
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
|
+
none: false
|
119
131
|
requirements:
|
120
132
|
- - ">="
|
121
133
|
- !ruby/object:Gem::Version
|
134
|
+
hash: 3
|
122
135
|
segments:
|
123
136
|
- 0
|
124
137
|
version: "0"
|
125
138
|
requirements: []
|
126
139
|
|
127
140
|
rubyforge_project:
|
128
|
-
rubygems_version: 1.3.
|
141
|
+
rubygems_version: 1.3.7
|
129
142
|
signing_key:
|
130
143
|
specification_version: 3
|
131
144
|
summary: extracting the acl constructs from stonepath
|