openid_auth 1.0.0 → 1.0.1
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/README.markdown +9 -3
- data/lib/{open_id_authentication.rb → openid_auth.rb} +0 -0
- data/test/test_helper.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -3,9 +3,7 @@ OpenIdAuthentication
|
|
3
3
|
|
4
4
|
Same as forked version, but modified for SimpleDB.
|
5
5
|
|
6
|
-
Provides a thin wrapper around the excellent ruby-openid gem from JanRan.
|
7
|
-
|
8
|
-
gem install ruby-openid
|
6
|
+
Provides a thin wrapper around the excellent ruby-openid gem from JanRan.
|
9
7
|
|
10
8
|
To understand what OpenID is about and how it works, it helps to read the documentation for lib/openid/consumer.rb
|
11
9
|
from that gem.
|
@@ -29,9 +27,17 @@ The plugin also expects to find a root_url method that points to the home page o
|
|
29
27
|
The root_url will be used as the default return_to and realm value for OpenID. If you'd like to specify a different
|
30
28
|
realm, just pass in :realm=>"http://*.mydomain.com" in the options for authenticate_with_open_id.
|
31
29
|
|
30
|
+
|
31
|
+
Installation
|
32
|
+
============
|
33
|
+
|
34
|
+
gem install openid_auth
|
35
|
+
|
32
36
|
Example
|
33
37
|
=======
|
34
38
|
|
39
|
+
* NOTE: These examples may need some updating! *
|
40
|
+
|
35
41
|
This example is just to meant to demonstrate how you could use OpenID authentication. You might well want to add
|
36
42
|
salted hash logins instead of plain text passwords and other requirements on top of this. Treat it as a starting point,
|
37
43
|
not a destination.
|
File without changes
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openid_auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Travis Reeder
|
@@ -32,12 +32,12 @@ extra_rdoc_files:
|
|
32
32
|
- CHANGELOG
|
33
33
|
- README.markdown
|
34
34
|
files:
|
35
|
-
- lib/open_id_authentication.rb
|
36
35
|
- lib/open_id_authentication/association.rb
|
37
36
|
- lib/open_id_authentication/db_store.rb
|
38
37
|
- lib/open_id_authentication/nonce.rb
|
39
38
|
- lib/open_id_authentication/request.rb
|
40
39
|
- lib/open_id_authentication/timeout_fixes.rb
|
40
|
+
- lib/openid_auth.rb
|
41
41
|
- CHANGELOG
|
42
42
|
- README.markdown
|
43
43
|
has_rdoc: true
|