multiauth 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/multiauth.rb +20 -21
- data/multiauth.gemspec +2 -2
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/multiauth.rb
CHANGED
@@ -6,37 +6,42 @@ module Multiauth
|
|
6
6
|
'Google' => {
|
7
7
|
:url => 'https://www.google.com/accounts/o8/id'
|
8
8
|
},
|
9
|
-
'Yahoo' => {
|
10
|
-
:url => 'http://yahoo.com/'
|
11
|
-
},
|
12
9
|
'Twitter' => {
|
13
10
|
:url => '/users/sign_in/twitter',
|
14
11
|
:real => true
|
15
12
|
},
|
16
13
|
'Facebook' => {
|
17
|
-
:
|
14
|
+
:url => lambda { oauth_authorize_url(resource_name, :facebook) },
|
18
15
|
:real => true
|
19
16
|
},
|
20
|
-
'
|
21
|
-
:url => '
|
22
|
-
},
|
23
|
-
'Github' => {
|
24
|
-
:url => lambda { oauth_authorize_url(resource_name, :github) },
|
25
|
-
:real => true
|
17
|
+
'Yahoo' => {
|
18
|
+
:url => 'http://yahoo.com/'
|
26
19
|
},
|
27
20
|
'AOL' => {
|
28
|
-
:user_name_txt => 'screen:name',
|
29
21
|
:url => 'http://openid.aol.com/{user_name}'
|
30
22
|
},
|
31
|
-
'
|
32
|
-
:url => '{user_name}'
|
23
|
+
'MySpace' => {
|
24
|
+
:url => 'http://www.myspace.com/{user_name}'
|
25
|
+
},
|
26
|
+
'Github' => {
|
27
|
+
:url => lambda { oauth_authorize_url(resource_name, :github) },
|
28
|
+
:real => true
|
33
29
|
},
|
34
30
|
'MyOpenID' => {
|
35
31
|
:url => 'http://{user_name}.myopenid.com/'
|
36
32
|
},
|
33
|
+
'Wordpress' => {
|
34
|
+
:url => 'http://{user_name}.wordpress.com/'
|
35
|
+
},
|
36
|
+
'Blogger' => {
|
37
|
+
:url => 'http://{user_name}.blogspot.com/'
|
38
|
+
},
|
37
39
|
'Flickr' => {
|
38
40
|
:url => 'http://flickr.com/{user_name}/'
|
39
41
|
},
|
42
|
+
'Launchpad' => {
|
43
|
+
:url => 'https://launchpad.net/~{user_name}'
|
44
|
+
},
|
40
45
|
'Vidoop' => {
|
41
46
|
:url => 'http://{user_name}.myvidoop.com/'
|
42
47
|
},
|
@@ -46,20 +51,14 @@ module Multiauth
|
|
46
51
|
'Technorati' => {
|
47
52
|
:url => 'http://technorati.com/people/technorati/{user_name}/'
|
48
53
|
},
|
49
|
-
'Wordpress' => {
|
50
|
-
:url => 'http://{user_name}.wordpress.com/'
|
51
|
-
},
|
52
|
-
'Blogger' => {
|
53
|
-
:url => 'http://{user_name}.blogspot.com/'
|
54
|
-
},
|
55
54
|
'Verisign' => {
|
56
55
|
:url => 'http://{user_name}.pip.verisignlabs.com/'
|
57
56
|
},
|
58
57
|
'LiveJournal' => {
|
59
58
|
:url => 'http://{user_name}.livejournal.com'
|
60
59
|
},
|
61
|
-
'
|
62
|
-
:url => '
|
60
|
+
'OpenID' => {
|
61
|
+
:url => '{user_name}'
|
63
62
|
}
|
64
63
|
}
|
65
64
|
end
|
data/multiauth.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{multiauth}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["David A. Cuadrado"]
|
12
|
-
s.date = %q{2010-09-
|
12
|
+
s.date = %q{2010-09-19}
|
13
13
|
s.description = %q{multi authentication gem using devise & co}
|
14
14
|
s.email = %q{krawek@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- David A. Cuadrado
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-09-
|
17
|
+
date: 2010-09-19 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|