The plugin is taken from http://github.com/rails/open_id_authentication commit 079b91f70602814c98d4345e198f743bb56b76b5 This plugin provides some convenience wrapper functions around the ruby gem ruby-openid
17 lines
326 B
Ruby
17 lines
326 B
Ruby
require 'test/unit'
|
|
require 'rubygems'
|
|
|
|
gem 'activesupport'
|
|
require 'active_support'
|
|
|
|
gem 'actionpack'
|
|
require 'action_controller'
|
|
|
|
gem 'mocha'
|
|
require 'mocha'
|
|
|
|
gem 'ruby-openid'
|
|
require 'openid'
|
|
|
|
RAILS_ROOT = File.dirname(__FILE__) unless defined? RAILS_ROOT
|
|
require File.dirname(__FILE__) + "/../lib/open_id_authentication"
|