refinerycms-authentication 0.9.9.3 → 0.9.9.4
Sign up to get free protection for your applications and to get access to all the features.
- data/license.md +1 -1
- data/refinerycms-authentication.gemspec +3 -4
- metadata +3 -4
- data/readme.md +0 -17
data/license.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# MIT License
|
2
2
|
|
3
|
-
Copyright (c) 2005-
|
3
|
+
Copyright (c) 2005-2011 [Resolve Digital](http://www.resolvedigital.com)
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{refinerycms-authentication}
|
5
|
-
s.version = %q{0.9.9.
|
5
|
+
s.version = %q{0.9.9.4}
|
6
6
|
s.summary = %q{Authentication engine for Refinery CMS}
|
7
7
|
s.description = %q{The default authentication engine for Refinery CMS}
|
8
|
-
s.date = %q{2011-02-
|
8
|
+
s.date = %q{2011-02-24}
|
9
9
|
s.email = %q{info@refinerycms.com}
|
10
10
|
s.homepage = %q{http://refinerycms.com}
|
11
11
|
s.rubyforge_project = %q{refinerycms}
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.require_paths = %w(lib)
|
15
15
|
s.executables = %w()
|
16
16
|
|
17
|
-
s.add_dependency 'refinerycms-core', '~> 0.9.9.
|
17
|
+
s.add_dependency 'refinerycms-core', '~> 0.9.9.4'
|
18
18
|
s.add_dependency 'devise', '~> 1.1'
|
19
19
|
|
20
20
|
s.files = [
|
@@ -103,7 +103,6 @@ Gem::Specification.new do |s|
|
|
103
103
|
'lib/generators/refinerycms_authentication_generator.rb',
|
104
104
|
'lib/refinerycms-authentication.rb',
|
105
105
|
'license.md',
|
106
|
-
'readme.md',
|
107
106
|
'refinerycms-authentication.gemspec',
|
108
107
|
'spec',
|
109
108
|
'spec/models',
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: refinerycms-authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.9.9.
|
5
|
+
version: 0.9.9.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Resolve Digital
|
@@ -13,7 +13,7 @@ autorequire:
|
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
15
|
|
16
|
-
date: 2011-02-
|
16
|
+
date: 2011-02-24 00:00:00 +13:00
|
17
17
|
default_executable:
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
@@ -24,7 +24,7 @@ dependencies:
|
|
24
24
|
requirements:
|
25
25
|
- - ~>
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.9.9.
|
27
|
+
version: 0.9.9.4
|
28
28
|
type: :runtime
|
29
29
|
version_requirements: *id001
|
30
30
|
- !ruby/object:Gem::Dependency
|
@@ -109,7 +109,6 @@ files:
|
|
109
109
|
- lib/generators/refinerycms_authentication_generator.rb
|
110
110
|
- lib/refinerycms-authentication.rb
|
111
111
|
- license.md
|
112
|
-
- readme.md
|
113
112
|
- refinerycms-authentication.gemspec
|
114
113
|
- spec/models/user_spec.rb
|
115
114
|
has_rdoc: true
|
data/readme.md
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# Authentication
|
2
|
-
|
3
|
-
## About
|
4
|
-
|
5
|
-
At the heart of Refinery's user management is the authentication plugin located in ``vendor/plugins/authentication``
|
6
|
-
|
7
|
-
What this really is is just a standard [authlogic](http://github.com/binarylogic/authlogic) install extended with a few extra features like "I forgot my password" and hooked directly into the heart of Refinery's plugin system.
|
8
|
-
|
9
|
-
Authlogic allows you to easily integrate with other systems too. So you could be logged in into another system using authlogic and easily stay logged in between the two systems without having to login twice.
|
10
|
-
|
11
|
-
## Adding New Users
|
12
|
-
|
13
|
-
New users can be easily added by going to the 'Users' area admin and clicking on "Add new user".
|
14
|
-
|
15
|
-
## Limiting and Granting Access
|
16
|
-
|
17
|
-
Each user has a set of plugins they're allowed to see. You can control which plugins each user can see by checking and unchecking the checkboxes next to the plugin name when editing or adding a new user.
|