Sha256: e11a4a108e277eed75195173c66e041df47b64e77d350c4aeaa7a2395f278794

Contents?: true

Size: 1.08 KB

Versions: 14

Compression:

Stored size: 1.08 KB

Contents

= Ruby OpenID Library 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

14 entries across 14 versions & 4 rubygems

Version Path
pelle-ruby-openid-2.1.8 INSTALL
entp-ruby-openid-2.2 INSTALL
nov-ruby-openid-2.1.9 INSTALL
ruby-openid-2.1.8 INSTALL
pelle-ruby-openid-2.1.9 INSTALL
ruby-openid-2.1.7 INSTALL
ruby-openid-2.0.1 INSTALL
ruby-openid-2.0.2 INSTALL
ruby-openid-2.1.4 INSTALL
ruby-openid-2.1.5 INSTALL
ruby-openid-2.1.2 INSTALL
ruby-openid-2.0.4 INSTALL
ruby-openid-2.0.3 INSTALL
ruby-openid-2.1.6 INSTALL