authlogic_wind 0.3.2 → 0.4.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.
- data/VERSION +1 -1
- data/authlogic_wind.gemspec +5 -4
- data/lib/authlogic_wind/acts_as_authentic.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.4.0
|
data/authlogic_wind.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
|
-
# DO NOT EDIT THIS FILE
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{authlogic_wind}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.4.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["James Stuart"]
|
|
12
|
-
s.date = %q{2009-
|
|
12
|
+
s.date = %q{2009-12-01}
|
|
13
13
|
s.description = %q{Authlogic plugin for WIND}
|
|
14
14
|
s.email = %q{tastyhat@jamesstuart.org}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -60,3 +60,4 @@ Gem::Specification.new do |s|
|
|
|
60
60
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
61
61
|
end
|
|
62
62
|
end
|
|
63
|
+
|
|
@@ -69,7 +69,7 @@ module AuthlogicWind
|
|
|
69
69
|
# Initial request when user presses one of the button helpers
|
|
70
70
|
(session_class.controller.params && !session_class.controller.params[:login_with_wind].blank?) ||
|
|
71
71
|
# When the oauth provider responds and we made the initial request
|
|
72
|
-
(wind_response && session_class.controller.session && session_class.controller.session[:wind_request_class] == self.class.name)
|
|
72
|
+
(defined?(wind_response) && wind_response && session_class.controller.session && session_class.controller.session[:wind_request_class] == self.class.name)
|
|
73
73
|
end
|
|
74
74
|
|
|
75
75
|
def validate_password_with_wind?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: authlogic_wind
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Stuart
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-12-01 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|