jspooner-authlogic-connect 0.0.19 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake/gempackagetask'
6
6
  spec = Gem::Specification.new do |s|
7
7
  s.name = "jspooner-authlogic-connect"
8
8
  s.author = "Lance Pollard"
9
- s.version = "0.0.19"
9
+ s.version = "0.0.20"
10
10
  s.summary = "Authlogic Connect: Oauth and OpenID made dead simple"
11
11
  s.homepage = "http://github.com/jspooner/authlogic-connect"
12
12
  s.email = "lancejpollard@gmail.com"
@@ -58,7 +58,7 @@ module AuthlogicConnect::Oauth
58
58
  self.attempted_record.active_token = self.attempted_record.get_token(:facebook)
59
59
  facebook = JSON.parse(self.attempted_record.active_token.get("/me"))
60
60
  puts "////////////// FACEBOOK DETAILS #{facebook.inspect}"
61
- puts "////////////// FACEBOOK EMAIL #{facebook[:email]}"
61
+ puts "////////////// FACEBOOK EMAIL #{facebook[email]}"
62
62
  if facebook[:email]
63
63
  existing_user = klass.find_by_email(facebook[:email])
64
64
  puts "////////////// FACEBOOK DETAILS YES YES YES YES #{existing_user} #{existing_user.inspect}"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jspooner-authlogic-connect
3
3
  version: !ruby/object:Gem::Version
4
- hash: 57
4
+ hash: 55
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 19
10
- version: 0.0.19
9
+ - 20
10
+ version: 0.0.20
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lance Pollard