forked from makandra/aegis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaegis.gemspec
More file actions
124 lines (119 loc) · 4.53 KB
/
aegis.gemspec
File metadata and controls
124 lines (119 loc) · 4.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{aegis}
s.version = "2.5.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Henning Koch", "Tobias Kraze"]
s.date = %q{2010-11-10}
s.description = %q{Aegis is an authorization solution for Ruby on Rails that supports roles and a RESTish, resource-style declaration of permission rules.}
s.email = %q{henning.koch@makandra.de}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
".gitignore",
"Gemfile",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"aegis.gemspec",
"lib/aegis.rb",
"lib/aegis/action.rb",
"lib/aegis/active_record_ext.rb",
"lib/aegis/compiler.rb",
"lib/aegis/controller.rb",
"lib/aegis/errors.rb",
"lib/aegis/has_role.rb",
"lib/aegis/loader.rb",
"lib/aegis/parser.rb",
"lib/aegis/permissions.rb",
"lib/aegis/resource.rb",
"lib/aegis/role.rb",
"lib/aegis/sieve.rb",
"lib/aegis/spec.rb",
"lib/aegis/spec/matchers.rb",
"lib/aegis/util.rb",
"spec/aegis/controller_spec.rb",
"spec/aegis/has_role_spec.rb",
"spec/aegis/loader_spec.rb",
"spec/aegis/permissions_spec.rb",
"spec/aegis/sieve_spec.rb",
"spec/aegis/spec/matchers_spec.rb",
"spec/app_root/app/controllers/application_controller.rb",
"spec/app_root/app/controllers/reviews_controller.rb",
"spec/app_root/app/models/permissions.rb",
"spec/app_root/app/models/property.rb",
"spec/app_root/app/models/review.rb",
"spec/app_root/app/models/user.rb",
"spec/app_root/config/boot.rb",
"spec/app_root/config/database.yml",
"spec/app_root/config/environment.rb",
"spec/app_root/config/environments/in_memory.rb",
"spec/app_root/config/environments/mysql.rb",
"spec/app_root/config/environments/postgresql.rb",
"spec/app_root/config/environments/sqlite.rb",
"spec/app_root/config/environments/sqlite3.rb",
"spec/app_root/config/routes.rb",
"spec/app_root/db/migrate/001_create_users.rb",
"spec/app_root/db/migrate/002_create_properties.rb",
"spec/app_root/db/migrate/003_create_reviews.rb",
"spec/app_root/lib/console_with_fixtures.rb",
"spec/app_root/log/.gitignore",
"spec/app_root/script/console",
"spec/controllers/reviews_controller_spec.rb",
"spec/rcov.opts",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/support/spec_candy.rb"
]
s.homepage = %q{http://github.com/makandra/aegis}
s.post_install_message = %q{Upgrade notice:
If you are using Aegis' automatic controller integration, include Aegis::Controller in your ApplicationController
Also see http://wiki.github.com/makandra/aegis/controller-integration
}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Complete authorization solution for Rails}
s.test_files = [
"spec/app_root/app/controllers/application_controller.rb",
"spec/app_root/app/controllers/reviews_controller.rb",
"spec/app_root/app/models/permissions.rb",
"spec/app_root/app/models/property.rb",
"spec/app_root/app/models/review.rb",
"spec/app_root/app/models/user.rb",
"spec/app_root/config/boot.rb",
"spec/app_root/config/environment.rb",
"spec/app_root/config/environments/in_memory.rb",
"spec/app_root/config/environments/mysql.rb",
"spec/app_root/config/environments/postgresql.rb",
"spec/app_root/config/environments/sqlite.rb",
"spec/app_root/config/environments/sqlite3.rb",
"spec/app_root/config/routes.rb",
"spec/app_root/db/migrate/001_create_users.rb",
"spec/app_root/db/migrate/002_create_properties.rb",
"spec/app_root/db/migrate/003_create_reviews.rb",
"spec/app_root/lib/console_with_fixtures.rb",
"spec/controllers/reviews_controller_spec.rb",
"spec/spec_helper.rb",
"spec/aegis/has_role_spec.rb",
"spec/aegis/loader_spec.rb",
"spec/aegis/permissions_spec.rb",
"spec/aegis/sieve_spec.rb",
"spec/aegis/spec/matchers_spec.rb",
"spec/aegis/controller_spec.rb",
"spec/support/spec_candy.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end