Empact-authlogic_rpx 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Empact-authlogic_rpx.gemspec +1 -1
- data/VERSION +1 -1
- data/lib/authlogic_rpx/helper.rb +1 -1
- metadata +2 -2
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{Empact-authlogic_rpx}
|
8
|
-
s.version = "1.1.
|
8
|
+
s.version = "1.1.6"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Paul Gallagher / tardate"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.6
|
data/lib/authlogic_rpx/helper.rb
CHANGED
@@ -36,7 +36,7 @@ module AuthlogicRpx
|
|
36
36
|
private
|
37
37
|
|
38
38
|
def build_token_url!( options )
|
39
|
-
options.delete( :return_url ) + (options[:return_url].include?('?') ? '&' : '?') + (
|
39
|
+
options.delete( :return_url ) + (options[:return_url].to_s.include?('?') ? '&' : '?') + (
|
40
40
|
{ :authenticity_token => form_authenticity_token, :add_rpx => options.delete( :add_rpx ) }.collect { |n| "#{n[0]}=#{ u(n[1]) }" if n[1] }
|
41
41
|
).compact.join('&')
|
42
42
|
end
|