local-openid 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/README.txt +7 -9
  3. data/Rakefile +2 -1
  4. metadata +12 -2
@@ -1,3 +1,7 @@
1
+ === 0.1.1 / 2009-04-06
2
+
3
+ * add Sinatra dependency
4
+
1
5
  === 0.1.0 / 2009-04-04
2
6
 
3
7
  * initial
data/README.txt CHANGED
@@ -22,17 +22,15 @@ instead of authenticating through HTTP/HTTPS.
22
22
  == local-openid exists for the following reasons:
23
23
 
24
24
  1. Passwords and password managers feel clumsy to me on web browsers.
25
- On the other hand; using ssh, editing text files, and running servers
26
- are second nature. Clearly, local-openid is not for everyone.
27
-
25
+ On the other hand; using ssh, editing text files, and running servers
26
+ are second nature. Clearly, local-openid is not for everyone.
28
27
  2. Identity providers may not last. Companies die and business plans
29
- change. I'd rather my online identity not be subject to those whims.
30
-
28
+ change. I'd rather my online identity not be subject to those whims.
31
29
  3. OpenID providers could be compromised without disclosure. With
32
- local-openid, I have server logs to know if somebody is even trying
33
- something fishy with my identity. The vector for compromising my
34
- identity is greatly reduced because my local-openid instance has 99.999%
35
- downtime.
30
+ local-openid, I have server logs to know if somebody is even trying
31
+ something fishy with my identity. The vector for compromising my
32
+ identity is greatly reduced because my local-openid instance has 99.999%
33
+ downtime.
36
34
 
37
35
  == Install
38
36
 
data/Rakefile CHANGED
@@ -3,9 +3,10 @@ require 'hoe'
3
3
 
4
4
  readme = File.readlines('README.txt')
5
5
 
6
- Hoe.new('local-openid', '0.1.0') do |p|
6
+ Hoe.new('local-openid', '0.1.1') do |p|
7
7
  p.rubyforge_name = 'qrp'
8
8
  p.developer('Eric Wong', 'normalperson@yhbt.net')
9
9
  p.summary = readme[0].split(/\s*:\s*/)[1]
10
10
  p.url = 'http://bogomips.org/local-openid'
11
+ p.extra_deps << [ 'sinatra', '>= 0.9' ]
11
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: local-openid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Wong
@@ -9,9 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-05 00:00:00 -07:00
12
+ date: 2009-04-06 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: sinatra
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0.9"
24
+ version:
15
25
  - !ruby/object:Gem::Dependency
16
26
  name: hoe
17
27
  type: :development