devise_facebook_connectable 0.2.1 → 0.2.2
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.
|
@@ -65,7 +65,7 @@ module Devise #:nodoc:
|
|
|
65
65
|
options.merge!(:sign_out => true) if options[:autologoutlink] && signed_in?(scope)
|
|
66
66
|
|
|
67
67
|
content_tag(:div, :class => 'facebook_connect_link sign_in') do
|
|
68
|
-
facebook_connect_form(scope, options.slice(:method))
|
|
68
|
+
with_output_buffer { facebook_connect_form(scope, options.slice(:method)) } +
|
|
69
69
|
if options[:button]
|
|
70
70
|
fb_login_button('devise.facebook_connectable.sign_in();', options)
|
|
71
71
|
else
|
|
@@ -91,7 +91,7 @@ module Devise #:nodoc:
|
|
|
91
91
|
)
|
|
92
92
|
|
|
93
93
|
content_tag(:div, :class => 'facebook_connect_link sign_out') do
|
|
94
|
-
facebook_connect_form(scope, :sign_out => true, :method => :get)
|
|
94
|
+
with_output_buffer { facebook_connect_form(scope, :sign_out => true, :method => :get) } +
|
|
95
95
|
if options[:button]
|
|
96
96
|
fb_login_button('devise.facebook_connectable.sign_out();', options.merge(:autologoutlink => true))
|
|
97
97
|
else
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise_facebook_connectable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 19
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.2.2
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Jonas Grimfelt
|
|
@@ -14,16 +15,18 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date: 2010-
|
|
18
|
+
date: 2010-06-28 00:00:00 +02:00
|
|
18
19
|
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: activesupport
|
|
22
23
|
prerelease: false
|
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
24
26
|
requirements:
|
|
25
27
|
- - ">="
|
|
26
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
27
30
|
segments:
|
|
28
31
|
- 2
|
|
29
32
|
- 3
|
|
@@ -35,9 +38,11 @@ dependencies:
|
|
|
35
38
|
name: devise
|
|
36
39
|
prerelease: false
|
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
38
42
|
requirements:
|
|
39
43
|
- - ">="
|
|
40
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 23
|
|
41
46
|
segments:
|
|
42
47
|
- 1
|
|
43
48
|
- 0
|
|
@@ -49,9 +54,11 @@ dependencies:
|
|
|
49
54
|
name: facebooker
|
|
50
55
|
prerelease: false
|
|
51
56
|
requirement: &id003 !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
52
58
|
requirements:
|
|
53
59
|
- - ">="
|
|
54
60
|
- !ruby/object:Gem::Version
|
|
61
|
+
hash: 121
|
|
55
62
|
segments:
|
|
56
63
|
- 1
|
|
57
64
|
- 0
|
|
@@ -94,23 +101,27 @@ rdoc_options:
|
|
|
94
101
|
require_paths:
|
|
95
102
|
- lib
|
|
96
103
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
|
+
none: false
|
|
97
105
|
requirements:
|
|
98
106
|
- - ">="
|
|
99
107
|
- !ruby/object:Gem::Version
|
|
108
|
+
hash: 3
|
|
100
109
|
segments:
|
|
101
110
|
- 0
|
|
102
111
|
version: "0"
|
|
103
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
104
114
|
requirements:
|
|
105
115
|
- - ">="
|
|
106
116
|
- !ruby/object:Gem::Version
|
|
117
|
+
hash: 3
|
|
107
118
|
segments:
|
|
108
119
|
- 0
|
|
109
120
|
version: "0"
|
|
110
121
|
requirements: []
|
|
111
122
|
|
|
112
123
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 1.3.
|
|
124
|
+
rubygems_version: 1.3.7
|
|
114
125
|
signing_key:
|
|
115
126
|
specification_version: 3
|
|
116
127
|
summary: Devise << Facebook Connect.
|