summaryrefslogtreecommitdiffstats
path: root/vendor/gems/ruby-openid-2.1.4/INSTALL
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-12 21:25:50 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-12 21:25:50 +0000
commitff9da0bab038ea118b839dd2d9e93a4d1a37e274 (patch)
tree291390f695c5abbbe5c2dad973e312923830694d /vendor/gems/ruby-openid-2.1.4/INSTALL
parent5bdd4291624cabee530e1c40be79c19ba6fb09dd (diff)
downloadredmine-ff9da0bab038ea118b839dd2d9e93a4d1a37e274.tar.gz
redmine-ff9da0bab038ea118b839dd2d9e93a4d1a37e274.zip
Removes the fat ruby-openid gem. Simply use 'gem install ruby-openid' to enable openid support.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2458 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'vendor/gems/ruby-openid-2.1.4/INSTALL')
-rw-r--r--vendor/gems/ruby-openid-2.1.4/INSTALL47
1 files changed, 0 insertions, 47 deletions
diff --git a/vendor/gems/ruby-openid-2.1.4/INSTALL b/vendor/gems/ruby-openid-2.1.4/INSTALL
deleted file mode 100644
index 89f1b9bd4..000000000
--- a/vendor/gems/ruby-openid-2.1.4/INSTALL
+++ /dev/null
@@ -1,47 +0,0 @@
-= 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.