fix annoying warning about the spec for highline.

seems that rake gems:refresh_specs only works for gems in /vendor/gems that are mentioned in config.gem in environment.rb. Therefore I've updated environment.rb.tmpl.
This commit is contained in:
Reinier Balt 2008-12-21 21:53:42 +01:00
parent c5598a94ee
commit 0604cb187f
3 changed files with 487 additions and 398 deletions

View file

@ -1,109 +1,111 @@
# Be sure to restart your webserver when you modify this file. # Be sure to restart your webserver when you modify this file.
# Uncomment below to force Rails into production mode # Uncomment below to force Rails into production mode
# (Use only when you can't set environment variables through your web/app server) # (Use only when you can't set environment variables through your web/app server)
# ENV['RAILS_ENV'] = 'production' # ENV['RAILS_ENV'] = 'production'
# Bootstrap the Rails environment, frameworks, and default configuration # Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot') require File.join(File.dirname(__FILE__), 'boot')
# This is the 'salt' to add to the password before it is encrypted # This is the 'salt' to add to the password before it is encrypted
# You need to change this to something unique for yourself # You need to change this to something unique for yourself
SALT = "change-me" SALT = "change-me"
class Rails::Configuration class Rails::Configuration
attr_accessor :action_web_service attr_accessor :action_web_service
end end
# Leave this alone or set it to one or more of ['database', 'ldap', 'open_id']. # Leave this alone or set it to one or more of ['database', 'ldap', 'open_id'].
# If you choose ldap, see the additional configuration options further down. # If you choose ldap, see the additional configuration options further down.
AUTHENTICATION_SCHEMES = ['database'] AUTHENTICATION_SCHEMES = ['database']
Rails::Initializer.run do |config| Rails::Initializer.run do |config|
# Skip frameworks you're not going to use # Skip frameworks you're not going to use
# config.frameworks -= [ :action_web_service, :action_mailer ] # config.frameworks -= [ :action_web_service, :action_mailer ]
config.frameworks += [ :action_web_service] config.frameworks += [ :action_web_service]
config.action_web_service = Rails::OrderedOptions.new config.action_web_service = Rails::OrderedOptions.new
config.load_paths += %W( #{RAILS_ROOT}/app/apis ) config.load_paths += %W( #{RAILS_ROOT}/app/apis )
config.action_controller.use_accept_header = true config.gem "highline"
# Add additional load paths for your own custom dirs config.action_controller.use_accept_header = true
# config.load_paths += %W( #{RAILS_ROOT}/app/services )
# Add additional load paths for your own custom dirs
# Force all environments to use the same logger level # config.load_paths += %W( #{RAILS_ROOT}/app/services )
# (by default production uses :info, the others :debug)
# config.log_level = :debug # Force all environments to use the same logger level
# (by default production uses :info, the others :debug)
# Use the database for sessions instead of the file system # config.log_level = :debug
# (create the session table with 'rake create_sessions_table')
config.action_controller.session_store = :active_record_store # Use the database for sessions instead of the file system
# (create the session table with 'rake create_sessions_table')
config.action_controller.session = { config.action_controller.session_store = :active_record_store
:session_key => '_tracks_session_id',
:secret => SALT * (30.0 / SALT.length).ceil #must be at least 30 characters config.action_controller.session = {
} :session_key => '_tracks_session_id',
:secret => SALT * (30.0 / SALT.length).ceil #must be at least 30 characters
# Enable page/fragment caching by setting a file-based store }
# (remember to create the caching directory and make it readable to the application)
# config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache" # Enable page/fragment caching by setting a file-based store
# (remember to create the caching directory and make it readable to the application)
# Activate observers that should always be running # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
# config.active_record.observers = :cacher, :garbage_collector
# Activate observers that should always be running
# Make Active Record use UTC-base instead of local time # config.active_record.observers = :cacher, :garbage_collector
config.active_record.default_timezone = :utc
# Make Active Record use UTC-base instead of local time
# You''ll probably want to change this to the time zone of the computer where Tracks is running config.active_record.default_timezone = :utc
# run rake time:zones:local have Rails suggest time zone names on your system
config.time_zone = 'UTC' # You''ll probably want to change this to the time zone of the computer where Tracks is running
# run rake time:zones:local have Rails suggest time zone names on your system
# Use Active Record's schema dumper instead of SQL when creating the test database config.time_zone = 'UTC'
# (enables use of different database adapters for development and test environments)
config.active_record.schema_format = :ruby # Use Active Record's schema dumper instead of SQL when creating the test database
# (enables use of different database adapters for development and test environments)
# See Rails::Configuration for more options config.active_record.schema_format = :ruby
end
# See Rails::Configuration for more options
# Add new inflection rules using the following format end
# (all these examples are active by default):
# Inflector.inflections do |inflect| # Add new inflection rules using the following format
# inflect.plural /^(ox)$/i, '\1en' # (all these examples are active by default):
# inflect.singular /^(ox)en/i, '\1' # Inflector.inflections do |inflect|
# inflect.irregular 'person', 'people' # inflect.plural /^(ox)$/i, '\1en'
# inflect.uncountable %w( fish sheep ) # inflect.singular /^(ox)en/i, '\1'
# end # inflect.irregular 'person', 'people'
# inflect.uncountable %w( fish sheep )
# Include your application configuration below # end
# Include your application configuration below
require 'name_part_finder'
require 'tracks/todo_list'
require 'tracks/config' require 'name_part_finder'
require 'activerecord_base_tag_extensions' # Needed for tagging-specific extensions require 'tracks/todo_list'
require 'digest/sha1' #Needed to support 'rake db:fixtures:load' on some ruby installs: http://dev.rousette.org.uk/ticket/557 require 'tracks/config'
require 'prototype_helper_extensions' require 'activerecord_base_tag_extensions' # Needed for tagging-specific extensions
require 'digest/sha1' #Needed to support 'rake db:fixtures:load' on some ruby installs: http://dev.rousette.org.uk/ticket/557
if (AUTHENTICATION_SCHEMES.include? 'ldap') require 'prototype_helper_extensions'
require 'net/ldap' #requires ruby-net-ldap gem be installed
require 'simple_ldap_authenticator' if (AUTHENTICATION_SCHEMES.include? 'ldap')
SimpleLdapAuthenticator.ldap_library = 'net/ldap' require 'net/ldap' #requires ruby-net-ldap gem be installed
SimpleLdapAuthenticator.servers = %w'localhost' require 'simple_ldap_authenticator'
SimpleLdapAuthenticator.use_ssl = false SimpleLdapAuthenticator.ldap_library = 'net/ldap'
SimpleLdapAuthenticator.login_format = 'cn=%s,dc=example,dc=com' SimpleLdapAuthenticator.servers = %w'localhost'
end SimpleLdapAuthenticator.use_ssl = false
if (AUTHENTICATION_SCHEMES.include? 'open_id') SimpleLdapAuthenticator.login_format = 'cn=%s,dc=example,dc=com'
#requires ruby-openid gem to be installed end
end if (AUTHENTICATION_SCHEMES.include? 'open_id')
#requires ruby-openid gem to be installed
# setting this to true will make the cookies only available over HTTPS end
TRACKS_COOKIES_SECURE = false
# setting this to true will make the cookies only available over HTTPS
tracks_version='1.7RC' TRACKS_COOKIES_SECURE = false
# comment out next two lines if you do not want (or can not) the date of the tracks_version='1.7RC'
# last git commit in the footer
# info=`git log --pretty=format:"%ai" -1` # comment out next two lines if you do not want (or can not) the date of the
# tracks_version=tracks_version + ' ('+info+')' # last git commit in the footer
# info=`git log --pretty=format:"%ai" -1`
TRACKS_VERSION=tracks_version # tracks_version=tracks_version + ' ('+info+')'
TRACKS_VERSION=tracks_version

View file

@ -0,0 +1,87 @@
--- !ruby/object:Gem::Specification
name: highline
version: !ruby/object:Gem::Version
version: 1.5.0
platform: ruby
authors:
- James Edward Gray II
autorequire:
bindir: bin
cert_chain: []
date: 2008-11-05 00:00:00 +01:00
default_executable:
dependencies: []
description: A high-level IO library that provides validation, type conversion, and more for command-line interfaces. HighLine also includes a complete menu system that can crank out anything from simple list selection to complete shells with just minutes of work.
email: james@grayproductions.net
executables: []
extensions: []
extra_rdoc_files:
- README
- INSTALL
- TODO
- CHANGELOG
- LICENSE
files:
- examples/ansi_colors.rb
- examples/asking_for_arrays.rb
- examples/basic_usage.rb
- examples/color_scheme.rb
- examples/menus.rb
- examples/overwrite.rb
- examples/page_and_wrap.rb
- examples/password.rb
- examples/trapping_eof.rb
- examples/using_readline.rb
- lib/highline/color_scheme.rb
- lib/highline/import.rb
- lib/highline/menu.rb
- lib/highline/question.rb
- lib/highline/system_extensions.rb
- lib/highline.rb
- test/tc_color_scheme.rb
- test/tc_highline.rb
- test/tc_import.rb
- test/tc_menu.rb
- test/ts_all.rb
- Rakefile
- setup.rb
- README
- INSTALL
- TODO
- CHANGELOG
- LICENSE
has_rdoc: true
homepage: http://highline.rubyforge.org
post_install_message:
rdoc_options:
- --title
- HighLine Documentation
- --main
- README
require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
requirements:
- - ">="
- !ruby/object:Gem::Version
version: "0"
version:
required_rubygems_version: !ruby/object:Gem::Requirement
requirements:
- - ">="
- !ruby/object:Gem::Version
version: "0"
version:
requirements: []
rubyforge_project: highline
rubygems_version: 1.3.1
signing_key:
specification_version: 2
summary: HighLine is a high-level command-line IO library.
test_files:
- test/ts_all.rb

View file

@ -1,289 +1,289 @@
--- !ruby/object:Gem::Specification --- !ruby/object:Gem::Specification
name: ruby-openid name: ruby-openid
version: !ruby/object:Gem::Version version: !ruby/object:Gem::Version
version: 2.1.2 version: 2.1.2
platform: ruby platform: ruby
authors: authors:
- JanRain, Inc - JanRain, Inc
autorequire: openid autorequire: openid
bindir: bin bindir: bin
cert_chain: cert_chain:
date: 2008-06-27 00:00:00 -04:00 date: 2008-06-27 00:00:00 +02:00
default_executable: default_executable:
dependencies: [] dependencies: []
description: description:
email: openid@janrain.com email: openid@janrain.com
executables: [] executables: []
extensions: [] extensions: []
extra_rdoc_files: extra_rdoc_files:
- README - README
- INSTALL - INSTALL
- LICENSE - LICENSE
- UPGRADE - UPGRADE
files: files:
- examples/README - examples/README
- examples/active_record_openid_store - examples/active_record_openid_store
- examples/rails_openid - examples/rails_openid
- examples/discover - examples/discover
- examples/active_record_openid_store/lib - examples/active_record_openid_store/lib
- examples/active_record_openid_store/test - examples/active_record_openid_store/test
- examples/active_record_openid_store/init.rb - examples/active_record_openid_store/init.rb
- examples/active_record_openid_store/README - examples/active_record_openid_store/README
- examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb - examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb
- examples/active_record_openid_store/XXX_upgrade_open_id_store.rb - examples/active_record_openid_store/XXX_upgrade_open_id_store.rb
- examples/active_record_openid_store/lib/association.rb - examples/active_record_openid_store/lib/association.rb
- examples/active_record_openid_store/lib/nonce.rb - examples/active_record_openid_store/lib/nonce.rb
- examples/active_record_openid_store/lib/open_id_setting.rb - examples/active_record_openid_store/lib/open_id_setting.rb
- examples/active_record_openid_store/lib/openid_ar_store.rb - examples/active_record_openid_store/lib/openid_ar_store.rb
- examples/active_record_openid_store/test/store_test.rb - examples/active_record_openid_store/test/store_test.rb
- examples/rails_openid/app - examples/rails_openid/app
- examples/rails_openid/components - examples/rails_openid/components
- examples/rails_openid/config - examples/rails_openid/config
- examples/rails_openid/db - examples/rails_openid/db
- examples/rails_openid/doc - examples/rails_openid/doc
- examples/rails_openid/lib - examples/rails_openid/lib
- examples/rails_openid/log - examples/rails_openid/log
- examples/rails_openid/public - examples/rails_openid/public
- examples/rails_openid/script - examples/rails_openid/script
- examples/rails_openid/test - examples/rails_openid/test
- examples/rails_openid/vendor - examples/rails_openid/vendor
- examples/rails_openid/Rakefile - examples/rails_openid/Rakefile
- examples/rails_openid/README - examples/rails_openid/README
- examples/rails_openid/app/controllers - examples/rails_openid/app/controllers
- examples/rails_openid/app/helpers - examples/rails_openid/app/helpers
- examples/rails_openid/app/models - examples/rails_openid/app/models
- examples/rails_openid/app/views - examples/rails_openid/app/views
- examples/rails_openid/app/controllers/application.rb - examples/rails_openid/app/controllers/application.rb
- examples/rails_openid/app/controllers/login_controller.rb - examples/rails_openid/app/controllers/login_controller.rb
- examples/rails_openid/app/controllers/server_controller.rb - examples/rails_openid/app/controllers/server_controller.rb
- examples/rails_openid/app/controllers/consumer_controller.rb - examples/rails_openid/app/controllers/consumer_controller.rb
- examples/rails_openid/app/helpers/application_helper.rb - examples/rails_openid/app/helpers/application_helper.rb
- examples/rails_openid/app/helpers/login_helper.rb - examples/rails_openid/app/helpers/login_helper.rb
- examples/rails_openid/app/helpers/server_helper.rb - examples/rails_openid/app/helpers/server_helper.rb
- examples/rails_openid/app/views/layouts - examples/rails_openid/app/views/layouts
- examples/rails_openid/app/views/login - examples/rails_openid/app/views/login
- examples/rails_openid/app/views/server - examples/rails_openid/app/views/server
- examples/rails_openid/app/views/consumer - examples/rails_openid/app/views/consumer
- examples/rails_openid/app/views/layouts/server.rhtml - examples/rails_openid/app/views/layouts/server.rhtml
- examples/rails_openid/app/views/login/index.rhtml - examples/rails_openid/app/views/login/index.rhtml
- examples/rails_openid/app/views/server/decide.rhtml - examples/rails_openid/app/views/server/decide.rhtml
- examples/rails_openid/app/views/consumer/index.rhtml - examples/rails_openid/app/views/consumer/index.rhtml
- examples/rails_openid/config/environments - examples/rails_openid/config/environments
- examples/rails_openid/config/database.yml - examples/rails_openid/config/database.yml
- examples/rails_openid/config/boot.rb - examples/rails_openid/config/boot.rb
- examples/rails_openid/config/environment.rb - examples/rails_openid/config/environment.rb
- examples/rails_openid/config/routes.rb - examples/rails_openid/config/routes.rb
- examples/rails_openid/config/environments/development.rb - examples/rails_openid/config/environments/development.rb
- examples/rails_openid/config/environments/production.rb - examples/rails_openid/config/environments/production.rb
- examples/rails_openid/config/environments/test.rb - examples/rails_openid/config/environments/test.rb
- examples/rails_openid/doc/README_FOR_APP - examples/rails_openid/doc/README_FOR_APP
- examples/rails_openid/lib/tasks - examples/rails_openid/lib/tasks
- examples/rails_openid/public/images - examples/rails_openid/public/images
- examples/rails_openid/public/javascripts - examples/rails_openid/public/javascripts
- examples/rails_openid/public/stylesheets - examples/rails_openid/public/stylesheets
- examples/rails_openid/public/dispatch.cgi - examples/rails_openid/public/dispatch.cgi
- examples/rails_openid/public/404.html - examples/rails_openid/public/404.html
- examples/rails_openid/public/500.html - examples/rails_openid/public/500.html
- examples/rails_openid/public/dispatch.fcgi - examples/rails_openid/public/dispatch.fcgi
- examples/rails_openid/public/dispatch.rb - examples/rails_openid/public/dispatch.rb
- examples/rails_openid/public/favicon.ico - examples/rails_openid/public/favicon.ico
- examples/rails_openid/public/robots.txt - examples/rails_openid/public/robots.txt
- examples/rails_openid/public/images/openid_login_bg.gif - examples/rails_openid/public/images/openid_login_bg.gif
- examples/rails_openid/public/javascripts/controls.js - examples/rails_openid/public/javascripts/controls.js
- examples/rails_openid/public/javascripts/dragdrop.js - examples/rails_openid/public/javascripts/dragdrop.js
- examples/rails_openid/public/javascripts/effects.js - examples/rails_openid/public/javascripts/effects.js
- examples/rails_openid/public/javascripts/prototype.js - examples/rails_openid/public/javascripts/prototype.js
- examples/rails_openid/script/performance - examples/rails_openid/script/performance
- examples/rails_openid/script/process - examples/rails_openid/script/process
- examples/rails_openid/script/console - examples/rails_openid/script/console
- examples/rails_openid/script/about - examples/rails_openid/script/about
- examples/rails_openid/script/breakpointer - examples/rails_openid/script/breakpointer
- examples/rails_openid/script/destroy - examples/rails_openid/script/destroy
- examples/rails_openid/script/generate - examples/rails_openid/script/generate
- examples/rails_openid/script/plugin - examples/rails_openid/script/plugin
- examples/rails_openid/script/runner - examples/rails_openid/script/runner
- examples/rails_openid/script/server - examples/rails_openid/script/server
- examples/rails_openid/script/performance/benchmarker - examples/rails_openid/script/performance/benchmarker
- examples/rails_openid/script/performance/profiler - examples/rails_openid/script/performance/profiler
- examples/rails_openid/script/process/spawner - examples/rails_openid/script/process/spawner
- examples/rails_openid/script/process/reaper - examples/rails_openid/script/process/reaper
- examples/rails_openid/script/process/spinner - examples/rails_openid/script/process/spinner
- examples/rails_openid/test/fixtures - examples/rails_openid/test/fixtures
- examples/rails_openid/test/functional - examples/rails_openid/test/functional
- examples/rails_openid/test/mocks - examples/rails_openid/test/mocks
- examples/rails_openid/test/unit - examples/rails_openid/test/unit
- examples/rails_openid/test/test_helper.rb - examples/rails_openid/test/test_helper.rb
- examples/rails_openid/test/functional/login_controller_test.rb - examples/rails_openid/test/functional/login_controller_test.rb
- examples/rails_openid/test/functional/server_controller_test.rb - examples/rails_openid/test/functional/server_controller_test.rb
- examples/rails_openid/test/mocks/development - examples/rails_openid/test/mocks/development
- examples/rails_openid/test/mocks/test - examples/rails_openid/test/mocks/test
- lib/openid - lib/openid
- lib/hmac - lib/hmac
- lib/openid.rb - lib/openid.rb
- lib/openid/cryptutil.rb - lib/openid/cryptutil.rb
- lib/openid/extras.rb - lib/openid/extras.rb
- lib/openid/urinorm.rb - lib/openid/urinorm.rb
- lib/openid/util.rb - lib/openid/util.rb
- lib/openid/trustroot.rb - lib/openid/trustroot.rb
- lib/openid/message.rb - lib/openid/message.rb
- lib/openid/yadis - lib/openid/yadis
- lib/openid/consumer - lib/openid/consumer
- lib/openid/fetchers.rb - lib/openid/fetchers.rb
- lib/openid/dh.rb - lib/openid/dh.rb
- lib/openid/kvform.rb - lib/openid/kvform.rb
- lib/openid/association.rb - lib/openid/association.rb
- lib/openid/store - lib/openid/store
- lib/openid/kvpost.rb - lib/openid/kvpost.rb
- lib/openid/extensions - lib/openid/extensions
- lib/openid/protocolerror.rb - lib/openid/protocolerror.rb
- lib/openid/server.rb - lib/openid/server.rb
- lib/openid/extension.rb - lib/openid/extension.rb
- lib/openid/consumer.rb - lib/openid/consumer.rb
- lib/openid/yadis/htmltokenizer.rb - lib/openid/yadis/htmltokenizer.rb
- lib/openid/yadis/parsehtml.rb - lib/openid/yadis/parsehtml.rb
- lib/openid/yadis/filters.rb - lib/openid/yadis/filters.rb
- lib/openid/yadis/xrds.rb - lib/openid/yadis/xrds.rb
- lib/openid/yadis/accept.rb - lib/openid/yadis/accept.rb
- lib/openid/yadis/constants.rb - lib/openid/yadis/constants.rb
- lib/openid/yadis/discovery.rb - lib/openid/yadis/discovery.rb
- lib/openid/yadis/xri.rb - lib/openid/yadis/xri.rb
- lib/openid/yadis/xrires.rb - lib/openid/yadis/xrires.rb
- lib/openid/yadis/services.rb - lib/openid/yadis/services.rb
- lib/openid/consumer/html_parse.rb - lib/openid/consumer/html_parse.rb
- lib/openid/consumer/idres.rb - lib/openid/consumer/idres.rb
- lib/openid/consumer/associationmanager.rb - lib/openid/consumer/associationmanager.rb
- lib/openid/consumer/discovery.rb - lib/openid/consumer/discovery.rb
- lib/openid/consumer/discovery_manager.rb - lib/openid/consumer/discovery_manager.rb
- lib/openid/consumer/checkid_request.rb - lib/openid/consumer/checkid_request.rb
- lib/openid/consumer/responses.rb - lib/openid/consumer/responses.rb
- lib/openid/store/filesystem.rb - lib/openid/store/filesystem.rb
- lib/openid/store/interface.rb - lib/openid/store/interface.rb
- lib/openid/store/nonce.rb - lib/openid/store/nonce.rb
- lib/openid/store/memory.rb - lib/openid/store/memory.rb
- lib/openid/extensions/sreg.rb - lib/openid/extensions/sreg.rb
- lib/openid/extensions/ax.rb - lib/openid/extensions/ax.rb
- lib/openid/extensions/pape.rb - lib/openid/extensions/pape.rb
- lib/hmac/hmac.rb - lib/hmac/hmac.rb
- lib/hmac/sha1.rb - lib/hmac/sha1.rb
- lib/hmac/sha2.rb - lib/hmac/sha2.rb
- test/data - test/data
- test/test_association.rb - test/test_association.rb
- test/test_urinorm.rb - test/test_urinorm.rb
- test/testutil.rb - test/testutil.rb
- test/test_util.rb - test/test_util.rb
- test/test_message.rb - test/test_message.rb
- test/test_cryptutil.rb - test/test_cryptutil.rb
- test/test_extras.rb - test/test_extras.rb
- test/util.rb - test/util.rb
- test/test_trustroot.rb - test/test_trustroot.rb
- test/test_parsehtml.rb - test/test_parsehtml.rb
- test/test_fetchers.rb - test/test_fetchers.rb
- test/test_dh.rb - test/test_dh.rb
- test/test_kvform.rb - test/test_kvform.rb
- test/test_openid_yadis.rb - test/test_openid_yadis.rb
- test/test_linkparse.rb - test/test_linkparse.rb
- test/test_stores.rb - test/test_stores.rb
- test/test_filters.rb - test/test_filters.rb
- test/test_xrds.rb - test/test_xrds.rb
- test/test_nonce.rb - test/test_nonce.rb
- test/test_accept.rb - test/test_accept.rb
- test/test_kvpost.rb - test/test_kvpost.rb
- test/test_associationmanager.rb - test/test_associationmanager.rb
- test/discoverdata.rb - test/discoverdata.rb
- test/test_server.rb - test/test_server.rb
- test/test_yadis_discovery.rb - test/test_yadis_discovery.rb
- test/test_sreg.rb - test/test_sreg.rb
- test/test_idres.rb - test/test_idres.rb
- test/test_ax.rb - test/test_ax.rb
- test/test_xri.rb - test/test_xri.rb
- test/test_xrires.rb - test/test_xrires.rb
- test/test_discover.rb - test/test_discover.rb
- test/test_consumer.rb - test/test_consumer.rb
- test/test_pape.rb - test/test_pape.rb
- test/test_checkid_request.rb - test/test_checkid_request.rb
- test/test_discovery_manager.rb - test/test_discovery_manager.rb
- test/test_responses.rb - test/test_responses.rb
- test/test_extension.rb - test/test_extension.rb
- test/data/test_xrds - test/data/test_xrds
- test/data/urinorm.txt - test/data/urinorm.txt
- test/data/n2b64 - test/data/n2b64
- test/data/trustroot.txt - test/data/trustroot.txt
- test/data/dh.txt - test/data/dh.txt
- test/data/test1-parsehtml.txt - test/data/test1-parsehtml.txt
- test/data/linkparse.txt - test/data/linkparse.txt
- test/data/accept.txt - test/data/accept.txt
- test/data/test_discover - test/data/test_discover
- test/data/example-xrds.xml - test/data/example-xrds.xml
- test/data/test1-discover.txt - test/data/test1-discover.txt
- test/data/test_xrds/ref.xrds - test/data/test_xrds/ref.xrds
- test/data/test_xrds/README - test/data/test_xrds/README
- test/data/test_xrds/delegated-20060809-r1.xrds - test/data/test_xrds/delegated-20060809-r1.xrds
- test/data/test_xrds/delegated-20060809-r2.xrds - test/data/test_xrds/delegated-20060809-r2.xrds
- test/data/test_xrds/delegated-20060809.xrds - test/data/test_xrds/delegated-20060809.xrds
- test/data/test_xrds/no-xrd.xml - test/data/test_xrds/no-xrd.xml
- test/data/test_xrds/not-xrds.xml - test/data/test_xrds/not-xrds.xml
- test/data/test_xrds/prefixsometimes.xrds - test/data/test_xrds/prefixsometimes.xrds
- test/data/test_xrds/sometimesprefix.xrds - test/data/test_xrds/sometimesprefix.xrds
- test/data/test_xrds/spoof1.xrds - test/data/test_xrds/spoof1.xrds
- test/data/test_xrds/spoof2.xrds - test/data/test_xrds/spoof2.xrds
- test/data/test_xrds/spoof3.xrds - test/data/test_xrds/spoof3.xrds
- test/data/test_xrds/status222.xrds - test/data/test_xrds/status222.xrds
- test/data/test_xrds/valid-populated-xrds.xml - test/data/test_xrds/valid-populated-xrds.xml
- test/data/test_xrds/=j3h.2007.11.14.xrds - test/data/test_xrds/=j3h.2007.11.14.xrds
- test/data/test_xrds/subsegments.xrds - test/data/test_xrds/subsegments.xrds
- test/data/test_discover/openid2_xrds.xml - test/data/test_discover/openid2_xrds.xml
- test/data/test_discover/openid.html - test/data/test_discover/openid.html
- test/data/test_discover/openid2.html - test/data/test_discover/openid2.html
- test/data/test_discover/openid2_xrds_no_local_id.xml - test/data/test_discover/openid2_xrds_no_local_id.xml
- test/data/test_discover/openid_1_and_2.html - test/data/test_discover/openid_1_and_2.html
- test/data/test_discover/openid_1_and_2_xrds.xml - test/data/test_discover/openid_1_and_2_xrds.xml
- test/data/test_discover/openid_and_yadis.html - test/data/test_discover/openid_and_yadis.html
- test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml - test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml
- test/data/test_discover/openid_no_delegate.html - test/data/test_discover/openid_no_delegate.html
- test/data/test_discover/yadis_0entries.xml - test/data/test_discover/yadis_0entries.xml
- test/data/test_discover/yadis_2_bad_local_id.xml - test/data/test_discover/yadis_2_bad_local_id.xml
- test/data/test_discover/yadis_2entries_delegate.xml - test/data/test_discover/yadis_2entries_delegate.xml
- test/data/test_discover/yadis_2entries_idp.xml - test/data/test_discover/yadis_2entries_idp.xml
- test/data/test_discover/yadis_another_delegate.xml - test/data/test_discover/yadis_another_delegate.xml
- test/data/test_discover/yadis_idp.xml - test/data/test_discover/yadis_idp.xml
- test/data/test_discover/yadis_idp_delegate.xml - test/data/test_discover/yadis_idp_delegate.xml
- test/data/test_discover/yadis_no_delegate.xml - test/data/test_discover/yadis_no_delegate.xml
- NOTICE - NOTICE
- CHANGELOG - CHANGELOG
- README - README
- INSTALL - INSTALL
- LICENSE - LICENSE
- UPGRADE - UPGRADE
- admin/runtests.rb - admin/runtests.rb
has_rdoc: true has_rdoc: true
homepage: http://openidenabled.com/ruby-openid/ homepage: http://openidenabled.com/ruby-openid/
post_install_message: post_install_message:
rdoc_options: rdoc_options:
- --main - --main
- README - README
require_paths: require_paths:
- lib - lib
required_ruby_version: !ruby/object:Gem::Requirement required_ruby_version: !ruby/object:Gem::Requirement
requirements: requirements:
- - ">" - - ">"
- !ruby/object:Gem::Version - !ruby/object:Gem::Version
version: 0.0.0 version: 0.0.0
version: version:
required_rubygems_version: !ruby/object:Gem::Requirement required_rubygems_version: !ruby/object:Gem::Requirement
requirements: requirements:
- - ">=" - - ">="
- !ruby/object:Gem::Version - !ruby/object:Gem::Version
version: "0" version: "0"
version: version:
requirements: [] requirements: []
rubyforge_project: rubyforge_project:
rubygems_version: 1.2.0 rubygems_version: 1.3.1
signing_key: signing_key:
specification_version: 1 specification_version: 1
summary: A library for consuming and serving OpenID identities. summary: A library for consuming and serving OpenID identities.
test_files: test_files:
- admin/runtests.rb - admin/runtests.rb