From: Eric Wong Date: Mon, 6 Apr 2009 07:19:04 +0000 (-0700) Subject: local-openid 0.1.1 - fix Sinatra dependency X-Git-Tag: v0.1.1^0 X-Git-Url: https://repo.or.cz/w/local-openid.git/commitdiff_plain/9bb18791fc11aecc10574da5b80c489dac3dbc8a local-openid 0.1.1 - fix Sinatra dependency --- 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