multiauth 0.1.0 → 0.1.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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/multiauth.rb +20 -21
  3. data/multiauth.gemspec +2 -2
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
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
- :selector => lambda { oauth_authorize_url(resource_name, :facebook) },
14
+ :url => lambda { oauth_authorize_url(resource_name, :facebook) },
18
15
  :real => true
19
16
  },
20
- 'Launchpad' => {
21
- :url => 'https://launchpad.net/~{user_name}'
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
- 'OpenID' => {
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
- 'MySpace' => {
62
- :url => 'http://www.myspace.com/{user_name}'
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.0"
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-18}
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
- - 0
9
- version: 0.1.0
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-18 00:00:00 -05:00
17
+ date: 2010-09-19 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency