Sha256: b16b458297732584f395e7684d79df4225dbbda72e9d76a56d2458e0c4699284

Contents?: true

Size: 1.3 KB

Versions: 5

Compression:

Stored size: 1.3 KB

Contents

= Ruby OpenID Library Installation

== Dependencies

This library depends on the Ruby Yadis library available at:

http://www.openidenabled.com/yadis/libraries/ruby/about/

Please make sure you have the Yadis library installed, or use
rubygems for installation

== Rubygems Installation

Rubygems is a tool for installing ruby libraries and their
dependancies.  If you have rubygems installed, simply:

  gem install ruby-openid

== Manual Installation

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


== Testing the Installation

Make sure everything installed ok:
 $> irb
 irb$> require "openid"
 => true

Or, if you installed via rubygems:

 $> irb
 irb$> require "rubygems"
 => true
 irb$> require_gem "ruby-openid" 
 => true

== Run the test suite

Go into the test directory and execute the *runtests.rb* script.

== Next steps

* Run consumer.rb in the examples directory. 
* Get started writing your own consumer using OpenID::Consumer
* Write your own server with OpenID::Server
* Use the OpenIDLoginGenerator!  Read example/README for more info.

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ruby-openid-1.1.3 INSTALL
ruby-openid-1.1.1 INSTALL
ruby-openid-1.1.4 INSTALL
ruby-openid-1.1.2 INSTALL
ruby-openid-1.0.2 INSTALL