Adman65-AccessControl 0.2.2 → 0.2.5
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/.gitignore +3 -0
- data/AccessControl.gemspec +3 -2
- data/MIT-LICENSE +0 -0
- data/README.markdown +0 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/generators/access_control/USAGE +0 -0
- data/generators/access_control/access_control_generator.rb +0 -0
- data/generators/access_control/templates/migrate/create_access_control_models.rb +0 -0
- data/init.rb +0 -0
- data/install.rb +0 -0
- data/lib/access_control.rb +0 -0
- data/lib/access_control/common_methods.rb +0 -0
- data/lib/access_control/controller_helper.rb +0 -0
- data/lib/access_control/language.rb +0 -0
- data/lib/access_control/role_extension.rb +0 -0
- data/lib/access_control/user_extension.rb +0 -0
- data/lib/app/models/permission.rb +0 -0
- data/lib/app/models/role.rb +0 -0
- data/spec/access_controlled_user_spec.rb +0 -0
- data/spec/models/permission_spec.rb +0 -0
- data/spec/models/role_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/support/access_control_user.rb +0 -0
- data/spec/support/authorizable.rb +0 -0
- data/spec/support/schema.rb +0 -0
- data/tasks/access_control_tasks.rake +0 -0
- data/uninstall.rb +0 -0
- metadata +2 -1
data/.gitignore
ADDED
data/AccessControl.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{AccessControl}
|
|
5
|
-
s.version = "0.2.
|
|
5
|
+
s.version = "0.2.5"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Adam Hawkins"]
|
|
@@ -13,7 +13,8 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
"README.markdown"
|
|
14
14
|
]
|
|
15
15
|
s.files = [
|
|
16
|
-
"
|
|
16
|
+
".gitignore",
|
|
17
|
+
"AccessControl.gemspec",
|
|
17
18
|
"MIT-LICENSE",
|
|
18
19
|
"README.markdown",
|
|
19
20
|
"Rakefile",
|
data/MIT-LICENSE
CHANGED
|
File without changes
|
data/README.markdown
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
@@ -40,7 +40,7 @@ begin
|
|
|
40
40
|
s.homepage = "http://github.com/Adman65/AccessControl"
|
|
41
41
|
s.description = "Simple role based authorization for rails"
|
|
42
42
|
s.authors = ["Adam Hawkins"]
|
|
43
|
-
s.files = PKG_FILES.to_a
|
|
43
|
+
#s.files = PKG_FILES.to_a
|
|
44
44
|
end
|
|
45
45
|
rescue LoadError
|
|
46
46
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.5
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/init.rb
CHANGED
|
File without changes
|
data/install.rb
CHANGED
|
File without changes
|
data/lib/access_control.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/app/models/role.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/models/role_spec.rb
CHANGED
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/support/schema.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/uninstall.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: Adman65-AccessControl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Hawkins
|
|
@@ -22,6 +22,7 @@ extensions: []
|
|
|
22
22
|
extra_rdoc_files:
|
|
23
23
|
- README.markdown
|
|
24
24
|
files:
|
|
25
|
+
- .gitignore
|
|
25
26
|
- AccessControl.gemspec
|
|
26
27
|
- MIT-LICENSE
|
|
27
28
|
- README.markdown
|