omniauth-campus 0.1.10 → 0.2.0
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2e48a1c70a40a4c42083a4877ecb8ba58c7b87f
|
|
4
|
+
data.tar.gz: 6dd5345f7a93a7cf3266aa0fd89d7c32da24a269
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fcad70abc4f9e57cc16da3d62e602263e5f6408de7f52dc21c366e618250bc565d4ff57f9802ba5870d10352fc4b4249e757123611c189a7ba8c7d137a6d0ba
|
|
7
|
+
data.tar.gz: 13401030493e204976332b1b1f829961953adb2ee10f3edc2e5005013a94e0ecd3ea53a61258b027016c1eb50cd9b686d8722b92d1ccbe2bdc80039bd1d95e2e
|
|
Binary file
|
|
@@ -37,13 +37,16 @@ module OmniAuth
|
|
|
37
37
|
#
|
|
38
38
|
#
|
|
39
39
|
|
|
40
|
+
#def request_phase
|
|
41
|
+
# form = OmniAuth::Form.new(:title => options.title, :url => callback_path)
|
|
42
|
+
# options.fields.each do |field|
|
|
43
|
+
# form.text_field field.to_s.capitalize.gsub("_", " "), field.to_s
|
|
44
|
+
# end
|
|
45
|
+
# form.button "Sign In"
|
|
46
|
+
# form.to_response
|
|
47
|
+
#end
|
|
40
48
|
def request_phase
|
|
41
|
-
|
|
42
|
-
options.fields.each do |field|
|
|
43
|
-
form.text_field field.to_s.capitalize.gsub("_", " "), field.to_s
|
|
44
|
-
end
|
|
45
|
-
form.button "Sign In"
|
|
46
|
-
form.to_response
|
|
49
|
+
super
|
|
47
50
|
end
|
|
48
51
|
|
|
49
52
|
uid {raw_info['user_id']}
|
|
Binary file
|