makandra / aegis

Role-based permissions for your user models.

This URL has Read+Write access

aegis / aegis.gemspec
100644 95 lines (90 sloc) 3.522 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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{aegis}
  s.version = "1.1.4"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Henning Koch"]
  s.date = %q{2009-11-05}
  s.description = %q{Aegis is a role-based permission system, where all users are given a role. It is possible to define detailed and complex permissions for each role very easily.}
  s.email = %q{github@makandra.de}
  s.extra_rdoc_files = [
    "README.rdoc"
  ]
  s.files = [
    ".gitignore",
     "MIT-LICENSE",
     "README.rdoc",
     "Rakefile",
     "VERSION",
     "aegis.gemspec",
     "lib/aegis.rb",
     "lib/aegis/constants.rb",
     "lib/aegis/has_role.rb",
     "lib/aegis/normalization.rb",
     "lib/aegis/permission_error.rb",
     "lib/aegis/permission_evaluator.rb",
     "lib/aegis/permissions.rb",
     "lib/aegis/role.rb",
     "lib/rails/active_record.rb",
     "test/app_root/app/controllers/application_controller.rb",
     "test/app_root/app/models/permissions.rb",
     "test/app_root/app/models/soldier.rb",
     "test/app_root/app/models/user.rb",
     "test/app_root/app/models/user_subclass.rb",
     "test/app_root/config/boot.rb",
     "test/app_root/config/database.yml",
     "test/app_root/config/environment.rb",
     "test/app_root/config/environments/in_memory.rb",
     "test/app_root/config/environments/mysql.rb",
     "test/app_root/config/environments/postgresql.rb",
     "test/app_root/config/environments/sqlite.rb",
     "test/app_root/config/environments/sqlite3.rb",
     "test/app_root/config/routes.rb",
     "test/app_root/db/migrate/20090408115228_create_users.rb",
     "test/app_root/db/migrate/20090429075648_create_soldiers.rb",
     "test/app_root/lib/console_with_fixtures.rb",
     "test/app_root/log/.gitignore",
     "test/app_root/script/console",
     "test/has_role_options_test.rb",
     "test/has_role_test.rb",
     "test/permissions_test.rb",
     "test/test_helper.rb",
     "test/validation_test.rb"
  ]
  s.homepage = %q{http://github.com/makandra/aegis}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Role-based permissions for your user models.}
  s.test_files = [
    "test/app_root/app/models/permissions.rb",
     "test/app_root/app/models/soldier.rb",
     "test/app_root/app/models/user_subclass.rb",
     "test/app_root/app/models/user.rb",
     "test/app_root/app/controllers/application_controller.rb",
     "test/app_root/config/environment.rb",
     "test/app_root/config/environments/mysql.rb",
     "test/app_root/config/environments/postgresql.rb",
     "test/app_root/config/environments/sqlite3.rb",
     "test/app_root/config/environments/in_memory.rb",
     "test/app_root/config/environments/sqlite.rb",
     "test/app_root/config/boot.rb",
     "test/app_root/config/routes.rb",
     "test/app_root/db/migrate/20090429075648_create_soldiers.rb",
     "test/app_root/db/migrate/20090408115228_create_users.rb",
     "test/app_root/lib/console_with_fixtures.rb",
     "test/validation_test.rb",
     "test/test_helper.rb",
     "test/has_role_options_test.rb",
     "test/has_role_test.rb",
     "test/permissions_test.rb"
  ]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end