loginradius 0.1.2 → 0.1.3
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/README.rdoc +1 -1
- data/Rakefile +1 -1
- data/loginradius.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -14,7 +14,7 @@ Rails gem which enables token authentication against loginradius.com
|
|
14
14
|
loginradius = LoginRadius::LoginRadiusSession.new "INSERT YOUR KEY HERE"
|
15
15
|
|
16
16
|
# Authenticate the LoginRadius session vs. the token being passed to our app
|
17
|
-
if loginradius.
|
17
|
+
if loginradius.is_authentic_token? params[:token], params[:lrid]
|
18
18
|
logger.debug "successfully authenticated LoginRadius"
|
19
19
|
logger.debug loginradius.data
|
20
20
|
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('loginradius', '0.1.
|
5
|
+
Echoe.new('loginradius', '0.1.3') do |p|
|
6
6
|
p.description = "Enables token authentication against loginradius.com"
|
7
7
|
p.url = "http://github.com/sicruse/loginradius"
|
8
8
|
p.author = "Si Cruse"
|
data/loginradius.gemspec
CHANGED