loginradius 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +26 -1
  2. data/Rakefile +1 -1
  3. data/loginradius.gemspec +2 -2
  4. metadata +2 -2
data/README.rdoc CHANGED
@@ -1,6 +1,31 @@
1
1
  = LoginRadius
2
2
 
3
- Rails gem which enables token authentication against loginradius.com
3
+ Rails gem which enables token authentication against loginradius.com[http://www.loginradius.com]
4
+
5
+ == What is LoginRadius? (from loginradius.com[https://www.loginradius.com/loginradius/])
6
+ To give your business a boost on the web, we at LoginRadius came up with a different approach to the login process. Using LoginRadius, you can easily integrate social login on your website and allow users to register with their existing accounts on Facebook, Google, Yahoo, Twitter, and over 20 more providers. Eliminating the annoying registration process will not only attract more traffic to your website but also boost your user base. All ID providers are integrated to your website via LoginRadius, users can connect to ID providers through the channel provided by LoginRadius without ever navigating away from your website.
7
+
8
+ == Its simple to use
9
+ Please review the loginradius website to build an understanding of how to:
10
+ 1. register for an account
11
+ 2. integrate the signin form with your markup
12
+
13
+ Once you have integrated the signin form you will need to be able to process "callbacks" from the loginradius system. The callback happens after a user authenticates, via their chosen method, whereupon an authentication token is passed to your application as a parameter over a route of your specification. e.g.
14
+
15
+ Perhaps you might specify "http://myapp.mydomain.com/callback" as the method to contact your application. In order to service the callback you will need to:
16
+ 1. create a controller action and an appropriate entry in your config/routes.rb file
17
+ 2. in the controller action validate the callback is authentic
18
+
19
+ The purpose of the loginradius gem is to support the validation of the callback through a simple helper class, LoginRadiusSession.
20
+
21
+ == Install it as a Gem
22
+ loginradius is available as a Ruby gem.
23
+
24
+ $ [sudo] gem install loginradius
25
+
26
+ The loginradius source is available at GitHub:
27
+
28
+ $ git clone git://github.com/sicruse/loginradius.git
4
29
 
5
30
  == Example usage
6
31
 
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.3') do |p|
5
+ Echoe.new('loginradius', '0.1.4') 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
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "loginradius"
5
- s.version = "0.1.3"
5
+ s.version = "0.1.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Si Cruse"]
9
- s.date = "2012-03-30"
9
+ s.date = "2012-04-18"
10
10
  s.description = "Enables token authentication against loginradius.com"
11
11
  s.email = "si@mindcultivator.com"
12
12
  s.extra_rdoc_files = ["README.rdoc", "lib/loginradius.rb"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loginradius
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-30 00:00:00.000000000 Z
12
+ date: 2012-04-18 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Enables token authentication against loginradius.com
15
15
  email: si@mindcultivator.com