about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-04-06 00:19:04 -0700
committerEric Wong <normalperson@yhbt.net>2009-04-06 00:19:04 -0700
commit9bb18791fc11aecc10574da5b80c489dac3dbc8a (patch)
treeaff946587137ac19e2309de4b28e5cce592de0f7
parent16c335309b179036ccf0fdbf5d6f367b8a27fa72 (diff)
downloadlocal-openid-9bb18791fc11aecc10574da5b80c489dac3dbc8a.tar.gz
local-openid 0.1.1 - fix Sinatra dependency v0.1.1
-rw-r--r--History.txt4
-rw-r--r--Rakefile3
2 files changed, 6 insertions, 1 deletions
diff --git a/History.txt b/History.txt
index 45ee278..9ec159b 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,7 @@
+=== 0.1.1 / 2009-04-06
+
+* add Sinatra dependency
+
 === 0.1.0 / 2009-04-04
 
 * initial
diff --git a/Rakefile b/Rakefile
index dea1390..16fd51a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -3,9 +3,10 @@ require 'hoe'
 
 readme = File.readlines('README.txt')
 
-Hoe.new('local-openid', '0.1.0') do |p|
+Hoe.new('local-openid', '0.1.1') do |p|
    p.rubyforge_name = 'qrp'
    p.developer('Eric Wong', 'normalperson@yhbt.net')
    p.summary = readme[0].split(/\s*:\s*/)[1]
    p.url = 'http://bogomips.org/local-openid'
+   p.extra_deps << [ 'sinatra', '>= 0.9' ]
 end