local-openid 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +4 -0
- data/.gitignore +2 -0
- data/GNUmakefile +19 -0
- data/History.txt +3 -0
- data/LICENSE.txt +661 -0
- data/Manifest.txt +10 -0
- data/README.txt +90 -0
- data/Rakefile +11 -0
- data/bin/local-openid +300 -0
- data/setup.rb +1585 -0
- metadata +76 -0
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: local-openid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric Wong
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-04-05 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: hoe
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.11.0
|
24
|
+
version:
|
25
|
+
description: local-openid allows users with shell accounts on servers to authenticate with OpenID consumers by editing a YAML file in their home directory instead of authenticating through HTTP/HTTPS. 1. Encounter a login page that accepts OpenID (the consumer) 2. Login into your own server (if you're not already logged in) 3. Start the local-openid app on your server 4. Login using your OpenID (on the consumer) - you should be redirected to your local-openid application 5. edit ~/.local-openid/config.yml on your server to approve the consumer 6. Reload the local-openid page your browser was on. - you should be logged in to the OpenID consumer site - If not, check the error log (usually stderr) of local-openid 8. Shut down the local-openid application.
|
26
|
+
email:
|
27
|
+
- normalperson@yhbt.net
|
28
|
+
executables:
|
29
|
+
- local-openid
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files:
|
33
|
+
- History.txt
|
34
|
+
- LICENSE.txt
|
35
|
+
- Manifest.txt
|
36
|
+
- README.txt
|
37
|
+
files:
|
38
|
+
- .document
|
39
|
+
- .gitignore
|
40
|
+
- GNUmakefile
|
41
|
+
- History.txt
|
42
|
+
- LICENSE.txt
|
43
|
+
- Manifest.txt
|
44
|
+
- README.txt
|
45
|
+
- Rakefile
|
46
|
+
- bin/local-openid
|
47
|
+
- setup.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://bogomips.org/local-openid
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --main
|
53
|
+
- README.txt
|
54
|
+
require_paths:
|
55
|
+
- lib
|
56
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: "0"
|
67
|
+
version:
|
68
|
+
requirements: []
|
69
|
+
|
70
|
+
rubyforge_project: qrp
|
71
|
+
rubygems_version: 1.3.1
|
72
|
+
signing_key:
|
73
|
+
specification_version: 2
|
74
|
+
summary: Single User, Ephemeral OpenID Provider
|
75
|
+
test_files: []
|
76
|
+
|