ruby-openid
is distributed on RubyGems.
Install it:
gem install ruby-openid
This is probably what you need.
Unpack the archive and run setup.rb
to install:
ruby setup.rb
setup.rb
installs the library into your system ruby. If don't want to
add openid to you system ruby, you may instead add the lib
directory of
the extracted tarball to your RUBYLIB
environment variable:
$ export RUBYLIB=${RUBYLIB}:/path/to/ruby-openid/lib
Make sure everything installed ok:
$> irb
irb$> require "openid"
=> true
Go into the test directory and execute the runtests.rb
script.
- Run
consumer.rb
in theexamples/
directory. - Get started writing your own consumer using
OpenID::Consumer
- Write your own server with
OpenID::Server
- Use the
OpenIDLoginGenerator
! Readexamples/README.md
for more info.