pelle-ruby-openid 2.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +215 -0
- data/CHANGES-2.1.0 +36 -0
- data/INSTALL +47 -0
- data/LICENSE +210 -0
- data/NOTICE +2 -0
- data/README +82 -0
- data/UPGRADE +127 -0
- data/VERSION +1 -0
- data/examples/README +32 -0
- data/examples/active_record_openid_store/README +58 -0
- data/examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb +24 -0
- data/examples/active_record_openid_store/XXX_upgrade_open_id_store.rb +26 -0
- data/examples/active_record_openid_store/init.rb +8 -0
- data/examples/active_record_openid_store/lib/association.rb +10 -0
- data/examples/active_record_openid_store/lib/nonce.rb +3 -0
- data/examples/active_record_openid_store/lib/open_id_setting.rb +4 -0
- data/examples/active_record_openid_store/lib/openid_ar_store.rb +57 -0
- data/examples/active_record_openid_store/test/store_test.rb +212 -0
- data/examples/discover +49 -0
- data/examples/rails_openid/README +153 -0
- data/examples/rails_openid/Rakefile +10 -0
- data/examples/rails_openid/app/controllers/application.rb +4 -0
- data/examples/rails_openid/app/controllers/consumer_controller.rb +122 -0
- data/examples/rails_openid/app/controllers/login_controller.rb +45 -0
- data/examples/rails_openid/app/controllers/server_controller.rb +265 -0
- data/examples/rails_openid/app/helpers/application_helper.rb +3 -0
- data/examples/rails_openid/app/helpers/login_helper.rb +2 -0
- data/examples/rails_openid/app/helpers/server_helper.rb +9 -0
- data/examples/rails_openid/app/views/consumer/index.rhtml +81 -0
- data/examples/rails_openid/app/views/layouts/server.rhtml +68 -0
- data/examples/rails_openid/app/views/login/index.rhtml +56 -0
- data/examples/rails_openid/app/views/server/decide.rhtml +26 -0
- data/examples/rails_openid/config/boot.rb +19 -0
- data/examples/rails_openid/config/database.yml +74 -0
- data/examples/rails_openid/config/environment.rb +54 -0
- data/examples/rails_openid/config/environments/development.rb +19 -0
- data/examples/rails_openid/config/environments/production.rb +19 -0
- data/examples/rails_openid/config/environments/test.rb +19 -0
- data/examples/rails_openid/config/routes.rb +24 -0
- data/examples/rails_openid/doc/README_FOR_APP +2 -0
- data/examples/rails_openid/public/.htaccess +40 -0
- data/examples/rails_openid/public/404.html +8 -0
- data/examples/rails_openid/public/500.html +8 -0
- data/examples/rails_openid/public/dispatch.cgi +12 -0
- data/examples/rails_openid/public/dispatch.fcgi +26 -0
- data/examples/rails_openid/public/dispatch.rb +12 -0
- data/examples/rails_openid/public/favicon.ico +0 -0
- data/examples/rails_openid/public/images/openid_login_bg.gif +0 -0
- data/examples/rails_openid/public/javascripts/controls.js +750 -0
- data/examples/rails_openid/public/javascripts/dragdrop.js +584 -0
- data/examples/rails_openid/public/javascripts/effects.js +854 -0
- data/examples/rails_openid/public/javascripts/prototype.js +1785 -0
- data/examples/rails_openid/public/robots.txt +1 -0
- data/examples/rails_openid/script/about +3 -0
- data/examples/rails_openid/script/breakpointer +3 -0
- data/examples/rails_openid/script/console +3 -0
- data/examples/rails_openid/script/destroy +3 -0
- data/examples/rails_openid/script/generate +3 -0
- data/examples/rails_openid/script/performance/benchmarker +3 -0
- data/examples/rails_openid/script/performance/profiler +3 -0
- data/examples/rails_openid/script/plugin +3 -0
- data/examples/rails_openid/script/process/reaper +3 -0
- data/examples/rails_openid/script/process/spawner +3 -0
- data/examples/rails_openid/script/process/spinner +3 -0
- data/examples/rails_openid/script/runner +3 -0
- data/examples/rails_openid/script/server +3 -0
- data/examples/rails_openid/test/functional/login_controller_test.rb +18 -0
- data/examples/rails_openid/test/functional/server_controller_test.rb +18 -0
- data/examples/rails_openid/test/test_helper.rb +28 -0
- data/lib/hmac/hmac.rb +112 -0
- data/lib/hmac/sha1.rb +11 -0
- data/lib/hmac/sha2.rb +25 -0
- data/lib/openid/association.rb +249 -0
- data/lib/openid/consumer/associationmanager.rb +344 -0
- data/lib/openid/consumer/checkid_request.rb +186 -0
- data/lib/openid/consumer/discovery.rb +498 -0
- data/lib/openid/consumer/discovery_manager.rb +123 -0
- data/lib/openid/consumer/html_parse.rb +134 -0
- data/lib/openid/consumer/idres.rb +523 -0
- data/lib/openid/consumer/responses.rb +148 -0
- data/lib/openid/consumer.rb +395 -0
- data/lib/openid/cryptutil.rb +97 -0
- data/lib/openid/dh.rb +89 -0
- data/lib/openid/extension.rb +39 -0
- data/lib/openid/extensions/ax.rb +516 -0
- data/lib/openid/extensions/oauth.rb +91 -0
- data/lib/openid/extensions/pape.rb +179 -0
- data/lib/openid/extensions/sreg.rb +277 -0
- data/lib/openid/extras.rb +11 -0
- data/lib/openid/fetchers.rb +238 -0
- data/lib/openid/kvform.rb +136 -0
- data/lib/openid/kvpost.rb +58 -0
- data/lib/openid/message.rb +553 -0
- data/lib/openid/protocolerror.rb +8 -0
- data/lib/openid/server.rb +1544 -0
- data/lib/openid/store/filesystem.rb +271 -0
- data/lib/openid/store/interface.rb +75 -0
- data/lib/openid/store/memcache.rb +107 -0
- data/lib/openid/store/memory.rb +84 -0
- data/lib/openid/store/nonce.rb +68 -0
- data/lib/openid/trustroot.rb +349 -0
- data/lib/openid/urinorm.rb +75 -0
- data/lib/openid/util.rb +110 -0
- data/lib/openid/yadis/accept.rb +148 -0
- data/lib/openid/yadis/constants.rb +21 -0
- data/lib/openid/yadis/discovery.rb +153 -0
- data/lib/openid/yadis/filters.rb +205 -0
- data/lib/openid/yadis/htmltokenizer.rb +305 -0
- data/lib/openid/yadis/parsehtml.rb +45 -0
- data/lib/openid/yadis/services.rb +42 -0
- data/lib/openid/yadis/xrds.rb +155 -0
- data/lib/openid/yadis/xri.rb +90 -0
- data/lib/openid/yadis/xrires.rb +106 -0
- data/lib/openid.rb +20 -0
- data/setup.rb +1551 -0
- data/test/data/accept.txt +124 -0
- data/test/data/dh.txt +29 -0
- data/test/data/example-xrds.xml +14 -0
- data/test/data/linkparse.txt +587 -0
- data/test/data/n2b64 +650 -0
- data/test/data/test1-discover.txt +137 -0
- data/test/data/test1-parsehtml.txt +152 -0
- data/test/data/test_discover/malformed_meta_tag.html +19 -0
- data/test/data/test_discover/openid.html +11 -0
- data/test/data/test_discover/openid2.html +11 -0
- data/test/data/test_discover/openid2_xrds.xml +12 -0
- data/test/data/test_discover/openid2_xrds_no_local_id.xml +11 -0
- data/test/data/test_discover/openid_1_and_2.html +11 -0
- data/test/data/test_discover/openid_1_and_2_xrds.xml +16 -0
- data/test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml +17 -0
- data/test/data/test_discover/openid_and_yadis.html +12 -0
- data/test/data/test_discover/openid_no_delegate.html +10 -0
- data/test/data/test_discover/yadis_0entries.xml +12 -0
- data/test/data/test_discover/yadis_2_bad_local_id.xml +15 -0
- data/test/data/test_discover/yadis_2entries_delegate.xml +22 -0
- data/test/data/test_discover/yadis_2entries_idp.xml +21 -0
- data/test/data/test_discover/yadis_another_delegate.xml +14 -0
- data/test/data/test_discover/yadis_idp.xml +12 -0
- data/test/data/test_discover/yadis_idp_delegate.xml +13 -0
- data/test/data/test_discover/yadis_no_delegate.xml +11 -0
- data/test/data/test_xrds/=j3h.2007.11.14.xrds +25 -0
- data/test/data/test_xrds/README +12 -0
- data/test/data/test_xrds/delegated-20060809-r1.xrds +34 -0
- data/test/data/test_xrds/delegated-20060809-r2.xrds +34 -0
- data/test/data/test_xrds/delegated-20060809.xrds +34 -0
- data/test/data/test_xrds/no-xrd.xml +7 -0
- data/test/data/test_xrds/not-xrds.xml +2 -0
- data/test/data/test_xrds/prefixsometimes.xrds +34 -0
- data/test/data/test_xrds/ref.xrds +109 -0
- data/test/data/test_xrds/sometimesprefix.xrds +34 -0
- data/test/data/test_xrds/spoof1.xrds +25 -0
- data/test/data/test_xrds/spoof2.xrds +25 -0
- data/test/data/test_xrds/spoof3.xrds +37 -0
- data/test/data/test_xrds/status222.xrds +9 -0
- data/test/data/test_xrds/subsegments.xrds +58 -0
- data/test/data/test_xrds/valid-populated-xrds.xml +39 -0
- data/test/data/trustroot.txt +153 -0
- data/test/data/urinorm.txt +79 -0
- data/test/discoverdata.rb +131 -0
- data/test/test_accept.rb +170 -0
- data/test/test_association.rb +266 -0
- data/test/test_associationmanager.rb +917 -0
- data/test/test_ax.rb +648 -0
- data/test/test_checkid_request.rb +294 -0
- data/test/test_consumer.rb +257 -0
- data/test/test_cryptutil.rb +119 -0
- data/test/test_dh.rb +86 -0
- data/test/test_discover.rb +838 -0
- data/test/test_discovery_manager.rb +262 -0
- data/test/test_extension.rb +46 -0
- data/test/test_extras.rb +35 -0
- data/test/test_fetchers.rb +538 -0
- data/test/test_filters.rb +270 -0
- data/test/test_idres.rb +963 -0
- data/test/test_kvform.rb +165 -0
- data/test/test_kvpost.rb +65 -0
- data/test/test_linkparse.rb +101 -0
- data/test/test_message.rb +1116 -0
- data/test/test_nonce.rb +89 -0
- data/test/test_oauth.rb +175 -0
- data/test/test_openid_yadis.rb +178 -0
- data/test/test_pape.rb +247 -0
- data/test/test_parsehtml.rb +80 -0
- data/test/test_responses.rb +63 -0
- data/test/test_server.rb +2457 -0
- data/test/test_sreg.rb +479 -0
- data/test/test_stores.rb +298 -0
- data/test/test_trustroot.rb +113 -0
- data/test/test_urinorm.rb +35 -0
- data/test/test_util.rb +145 -0
- data/test/test_xrds.rb +169 -0
- data/test/test_xri.rb +48 -0
- data/test/test_xrires.rb +63 -0
- data/test/test_yadis_discovery.rb +220 -0
- data/test/testutil.rb +127 -0
- data/test/util.rb +53 -0
- metadata +316 -0
metadata
ADDED
@@ -0,0 +1,316 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pelle-ruby-openid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.1.8
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- JanRain, Inc
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-09-26 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email: openid@janrain.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- CHANGELOG
|
24
|
+
- CHANGES-2.1.0
|
25
|
+
- INSTALL
|
26
|
+
- LICENSE
|
27
|
+
- README
|
28
|
+
- UPGRADE
|
29
|
+
files:
|
30
|
+
- CHANGELOG
|
31
|
+
- CHANGES-2.1.0
|
32
|
+
- INSTALL
|
33
|
+
- LICENSE
|
34
|
+
- NOTICE
|
35
|
+
- README
|
36
|
+
- UPGRADE
|
37
|
+
- VERSION
|
38
|
+
- examples/README
|
39
|
+
- examples/active_record_openid_store/README
|
40
|
+
- examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb
|
41
|
+
- examples/active_record_openid_store/XXX_upgrade_open_id_store.rb
|
42
|
+
- examples/active_record_openid_store/init.rb
|
43
|
+
- examples/active_record_openid_store/lib/association.rb
|
44
|
+
- examples/active_record_openid_store/lib/nonce.rb
|
45
|
+
- examples/active_record_openid_store/lib/open_id_setting.rb
|
46
|
+
- examples/active_record_openid_store/lib/openid_ar_store.rb
|
47
|
+
- examples/active_record_openid_store/test/store_test.rb
|
48
|
+
- examples/discover
|
49
|
+
- examples/rails_openid/README
|
50
|
+
- examples/rails_openid/Rakefile
|
51
|
+
- examples/rails_openid/app/controllers/application.rb
|
52
|
+
- examples/rails_openid/app/controllers/consumer_controller.rb
|
53
|
+
- examples/rails_openid/app/controllers/login_controller.rb
|
54
|
+
- examples/rails_openid/app/controllers/server_controller.rb
|
55
|
+
- examples/rails_openid/app/helpers/application_helper.rb
|
56
|
+
- examples/rails_openid/app/helpers/login_helper.rb
|
57
|
+
- examples/rails_openid/app/helpers/server_helper.rb
|
58
|
+
- examples/rails_openid/app/views/consumer/index.rhtml
|
59
|
+
- examples/rails_openid/app/views/layouts/server.rhtml
|
60
|
+
- examples/rails_openid/app/views/login/index.rhtml
|
61
|
+
- examples/rails_openid/app/views/server/decide.rhtml
|
62
|
+
- examples/rails_openid/config/boot.rb
|
63
|
+
- examples/rails_openid/config/database.yml
|
64
|
+
- examples/rails_openid/config/environment.rb
|
65
|
+
- examples/rails_openid/config/environments/development.rb
|
66
|
+
- examples/rails_openid/config/environments/production.rb
|
67
|
+
- examples/rails_openid/config/environments/test.rb
|
68
|
+
- examples/rails_openid/config/routes.rb
|
69
|
+
- examples/rails_openid/doc/README_FOR_APP
|
70
|
+
- examples/rails_openid/public/.htaccess
|
71
|
+
- examples/rails_openid/public/404.html
|
72
|
+
- examples/rails_openid/public/500.html
|
73
|
+
- examples/rails_openid/public/dispatch.cgi
|
74
|
+
- examples/rails_openid/public/dispatch.fcgi
|
75
|
+
- examples/rails_openid/public/dispatch.rb
|
76
|
+
- examples/rails_openid/public/favicon.ico
|
77
|
+
- examples/rails_openid/public/images/openid_login_bg.gif
|
78
|
+
- examples/rails_openid/public/javascripts/controls.js
|
79
|
+
- examples/rails_openid/public/javascripts/dragdrop.js
|
80
|
+
- examples/rails_openid/public/javascripts/effects.js
|
81
|
+
- examples/rails_openid/public/javascripts/prototype.js
|
82
|
+
- examples/rails_openid/public/robots.txt
|
83
|
+
- examples/rails_openid/script/about
|
84
|
+
- examples/rails_openid/script/breakpointer
|
85
|
+
- examples/rails_openid/script/console
|
86
|
+
- examples/rails_openid/script/destroy
|
87
|
+
- examples/rails_openid/script/generate
|
88
|
+
- examples/rails_openid/script/performance/benchmarker
|
89
|
+
- examples/rails_openid/script/performance/profiler
|
90
|
+
- examples/rails_openid/script/plugin
|
91
|
+
- examples/rails_openid/script/process/reaper
|
92
|
+
- examples/rails_openid/script/process/spawner
|
93
|
+
- examples/rails_openid/script/process/spinner
|
94
|
+
- examples/rails_openid/script/runner
|
95
|
+
- examples/rails_openid/script/server
|
96
|
+
- examples/rails_openid/test/functional/login_controller_test.rb
|
97
|
+
- examples/rails_openid/test/functional/server_controller_test.rb
|
98
|
+
- examples/rails_openid/test/test_helper.rb
|
99
|
+
- lib/hmac/hmac.rb
|
100
|
+
- lib/hmac/sha1.rb
|
101
|
+
- lib/hmac/sha2.rb
|
102
|
+
- lib/openid.rb
|
103
|
+
- lib/openid/association.rb
|
104
|
+
- lib/openid/consumer.rb
|
105
|
+
- lib/openid/consumer/associationmanager.rb
|
106
|
+
- lib/openid/consumer/checkid_request.rb
|
107
|
+
- lib/openid/consumer/discovery.rb
|
108
|
+
- lib/openid/consumer/discovery_manager.rb
|
109
|
+
- lib/openid/consumer/html_parse.rb
|
110
|
+
- lib/openid/consumer/idres.rb
|
111
|
+
- lib/openid/consumer/responses.rb
|
112
|
+
- lib/openid/cryptutil.rb
|
113
|
+
- lib/openid/dh.rb
|
114
|
+
- lib/openid/extension.rb
|
115
|
+
- lib/openid/extensions/ax.rb
|
116
|
+
- lib/openid/extensions/oauth.rb
|
117
|
+
- lib/openid/extensions/pape.rb
|
118
|
+
- lib/openid/extensions/sreg.rb
|
119
|
+
- lib/openid/extras.rb
|
120
|
+
- lib/openid/fetchers.rb
|
121
|
+
- lib/openid/kvform.rb
|
122
|
+
- lib/openid/kvpost.rb
|
123
|
+
- lib/openid/message.rb
|
124
|
+
- lib/openid/protocolerror.rb
|
125
|
+
- lib/openid/server.rb
|
126
|
+
- lib/openid/store/filesystem.rb
|
127
|
+
- lib/openid/store/interface.rb
|
128
|
+
- lib/openid/store/memcache.rb
|
129
|
+
- lib/openid/store/memory.rb
|
130
|
+
- lib/openid/store/nonce.rb
|
131
|
+
- lib/openid/trustroot.rb
|
132
|
+
- lib/openid/urinorm.rb
|
133
|
+
- lib/openid/util.rb
|
134
|
+
- lib/openid/yadis/accept.rb
|
135
|
+
- lib/openid/yadis/constants.rb
|
136
|
+
- lib/openid/yadis/discovery.rb
|
137
|
+
- lib/openid/yadis/filters.rb
|
138
|
+
- lib/openid/yadis/htmltokenizer.rb
|
139
|
+
- lib/openid/yadis/parsehtml.rb
|
140
|
+
- lib/openid/yadis/services.rb
|
141
|
+
- lib/openid/yadis/xrds.rb
|
142
|
+
- lib/openid/yadis/xri.rb
|
143
|
+
- lib/openid/yadis/xrires.rb
|
144
|
+
- setup.rb
|
145
|
+
- test/data/accept.txt
|
146
|
+
- test/data/dh.txt
|
147
|
+
- test/data/example-xrds.xml
|
148
|
+
- test/data/linkparse.txt
|
149
|
+
- test/data/n2b64
|
150
|
+
- test/data/test1-discover.txt
|
151
|
+
- test/data/test1-parsehtml.txt
|
152
|
+
- test/data/test_discover/malformed_meta_tag.html
|
153
|
+
- test/data/test_discover/openid.html
|
154
|
+
- test/data/test_discover/openid2.html
|
155
|
+
- test/data/test_discover/openid2_xrds.xml
|
156
|
+
- test/data/test_discover/openid2_xrds_no_local_id.xml
|
157
|
+
- test/data/test_discover/openid_1_and_2.html
|
158
|
+
- test/data/test_discover/openid_1_and_2_xrds.xml
|
159
|
+
- test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml
|
160
|
+
- test/data/test_discover/openid_and_yadis.html
|
161
|
+
- test/data/test_discover/openid_no_delegate.html
|
162
|
+
- test/data/test_discover/yadis_0entries.xml
|
163
|
+
- test/data/test_discover/yadis_2_bad_local_id.xml
|
164
|
+
- test/data/test_discover/yadis_2entries_delegate.xml
|
165
|
+
- test/data/test_discover/yadis_2entries_idp.xml
|
166
|
+
- test/data/test_discover/yadis_another_delegate.xml
|
167
|
+
- test/data/test_discover/yadis_idp.xml
|
168
|
+
- test/data/test_discover/yadis_idp_delegate.xml
|
169
|
+
- test/data/test_discover/yadis_no_delegate.xml
|
170
|
+
- test/data/test_xrds/=j3h.2007.11.14.xrds
|
171
|
+
- test/data/test_xrds/README
|
172
|
+
- test/data/test_xrds/delegated-20060809-r1.xrds
|
173
|
+
- test/data/test_xrds/delegated-20060809-r2.xrds
|
174
|
+
- test/data/test_xrds/delegated-20060809.xrds
|
175
|
+
- test/data/test_xrds/no-xrd.xml
|
176
|
+
- test/data/test_xrds/not-xrds.xml
|
177
|
+
- test/data/test_xrds/prefixsometimes.xrds
|
178
|
+
- test/data/test_xrds/ref.xrds
|
179
|
+
- test/data/test_xrds/sometimesprefix.xrds
|
180
|
+
- test/data/test_xrds/spoof1.xrds
|
181
|
+
- test/data/test_xrds/spoof2.xrds
|
182
|
+
- test/data/test_xrds/spoof3.xrds
|
183
|
+
- test/data/test_xrds/status222.xrds
|
184
|
+
- test/data/test_xrds/subsegments.xrds
|
185
|
+
- test/data/test_xrds/valid-populated-xrds.xml
|
186
|
+
- test/data/trustroot.txt
|
187
|
+
- test/data/urinorm.txt
|
188
|
+
- test/discoverdata.rb
|
189
|
+
- test/test_accept.rb
|
190
|
+
- test/test_association.rb
|
191
|
+
- test/test_associationmanager.rb
|
192
|
+
- test/test_ax.rb
|
193
|
+
- test/test_checkid_request.rb
|
194
|
+
- test/test_consumer.rb
|
195
|
+
- test/test_cryptutil.rb
|
196
|
+
- test/test_dh.rb
|
197
|
+
- test/test_discover.rb
|
198
|
+
- test/test_discovery_manager.rb
|
199
|
+
- test/test_extension.rb
|
200
|
+
- test/test_extras.rb
|
201
|
+
- test/test_fetchers.rb
|
202
|
+
- test/test_filters.rb
|
203
|
+
- test/test_idres.rb
|
204
|
+
- test/test_kvform.rb
|
205
|
+
- test/test_kvpost.rb
|
206
|
+
- test/test_linkparse.rb
|
207
|
+
- test/test_message.rb
|
208
|
+
- test/test_nonce.rb
|
209
|
+
- test/test_oauth.rb
|
210
|
+
- test/test_openid_yadis.rb
|
211
|
+
- test/test_pape.rb
|
212
|
+
- test/test_parsehtml.rb
|
213
|
+
- test/test_responses.rb
|
214
|
+
- test/test_server.rb
|
215
|
+
- test/test_sreg.rb
|
216
|
+
- test/test_stores.rb
|
217
|
+
- test/test_trustroot.rb
|
218
|
+
- test/test_urinorm.rb
|
219
|
+
- test/test_util.rb
|
220
|
+
- test/test_xrds.rb
|
221
|
+
- test/test_xri.rb
|
222
|
+
- test/test_xrires.rb
|
223
|
+
- test/test_yadis_discovery.rb
|
224
|
+
- test/testutil.rb
|
225
|
+
- test/util.rb
|
226
|
+
has_rdoc: false
|
227
|
+
homepage: http://openidenabled.com/ruby-openid/
|
228
|
+
licenses:
|
229
|
+
post_install_message:
|
230
|
+
rdoc_options:
|
231
|
+
- --charset=UTF-8
|
232
|
+
require_paths:
|
233
|
+
- lib
|
234
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
235
|
+
requirements:
|
236
|
+
- - ">="
|
237
|
+
- !ruby/object:Gem::Version
|
238
|
+
version: "0"
|
239
|
+
version:
|
240
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
241
|
+
requirements:
|
242
|
+
- - ">="
|
243
|
+
- !ruby/object:Gem::Version
|
244
|
+
version: "0"
|
245
|
+
version:
|
246
|
+
requirements: []
|
247
|
+
|
248
|
+
rubyforge_project:
|
249
|
+
rubygems_version: 1.3.5
|
250
|
+
signing_key:
|
251
|
+
specification_version: 3
|
252
|
+
summary: A library for consuming and serving OpenID identities.
|
253
|
+
test_files:
|
254
|
+
- test/discoverdata.rb
|
255
|
+
- test/test_accept.rb
|
256
|
+
- test/test_association.rb
|
257
|
+
- test/test_associationmanager.rb
|
258
|
+
- test/test_ax.rb
|
259
|
+
- test/test_checkid_request.rb
|
260
|
+
- test/test_consumer.rb
|
261
|
+
- test/test_cryptutil.rb
|
262
|
+
- test/test_dh.rb
|
263
|
+
- test/test_discover.rb
|
264
|
+
- test/test_discovery_manager.rb
|
265
|
+
- test/test_extension.rb
|
266
|
+
- test/test_extras.rb
|
267
|
+
- test/test_fetchers.rb
|
268
|
+
- test/test_filters.rb
|
269
|
+
- test/test_idres.rb
|
270
|
+
- test/test_kvform.rb
|
271
|
+
- test/test_kvpost.rb
|
272
|
+
- test/test_linkparse.rb
|
273
|
+
- test/test_message.rb
|
274
|
+
- test/test_nonce.rb
|
275
|
+
- test/test_oauth.rb
|
276
|
+
- test/test_openid_yadis.rb
|
277
|
+
- test/test_pape.rb
|
278
|
+
- test/test_parsehtml.rb
|
279
|
+
- test/test_responses.rb
|
280
|
+
- test/test_server.rb
|
281
|
+
- test/test_sreg.rb
|
282
|
+
- test/test_stores.rb
|
283
|
+
- test/test_trustroot.rb
|
284
|
+
- test/test_urinorm.rb
|
285
|
+
- test/test_util.rb
|
286
|
+
- test/test_xrds.rb
|
287
|
+
- test/test_xri.rb
|
288
|
+
- test/test_xrires.rb
|
289
|
+
- test/test_yadis_discovery.rb
|
290
|
+
- test/testutil.rb
|
291
|
+
- test/util.rb
|
292
|
+
- examples/active_record_openid_store/init.rb
|
293
|
+
- examples/active_record_openid_store/lib/association.rb
|
294
|
+
- examples/active_record_openid_store/lib/nonce.rb
|
295
|
+
- examples/active_record_openid_store/lib/open_id_setting.rb
|
296
|
+
- examples/active_record_openid_store/lib/openid_ar_store.rb
|
297
|
+
- examples/active_record_openid_store/test/store_test.rb
|
298
|
+
- examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb
|
299
|
+
- examples/active_record_openid_store/XXX_upgrade_open_id_store.rb
|
300
|
+
- examples/rails_openid/app/controllers/application.rb
|
301
|
+
- examples/rails_openid/app/controllers/consumer_controller.rb
|
302
|
+
- examples/rails_openid/app/controllers/login_controller.rb
|
303
|
+
- examples/rails_openid/app/controllers/server_controller.rb
|
304
|
+
- examples/rails_openid/app/helpers/application_helper.rb
|
305
|
+
- examples/rails_openid/app/helpers/login_helper.rb
|
306
|
+
- examples/rails_openid/app/helpers/server_helper.rb
|
307
|
+
- examples/rails_openid/config/boot.rb
|
308
|
+
- examples/rails_openid/config/environment.rb
|
309
|
+
- examples/rails_openid/config/environments/development.rb
|
310
|
+
- examples/rails_openid/config/environments/production.rb
|
311
|
+
- examples/rails_openid/config/environments/test.rb
|
312
|
+
- examples/rails_openid/config/routes.rb
|
313
|
+
- examples/rails_openid/public/dispatch.rb
|
314
|
+
- examples/rails_openid/test/functional/login_controller_test.rb
|
315
|
+
- examples/rails_openid/test/functional/server_controller_test.rb
|
316
|
+
- examples/rails_openid/test/test_helper.rb
|