diff --git a/HACKNOTES b/HACKNOTES new file mode 100644 index 0000000..03ccf24 --- /dev/null +++ b/HACKNOTES @@ -0,0 +1,2 @@ +AboutEachPrefix: +if we actually wanted to handle aboutEachPrefix attributes (we should get confirmation as to how often they are used), then the approach to doing so would be pretty simple - put them in a temporary array, then when processing a file has *finished* apply them all. \ No newline at end of file diff --git a/History.txt b/History.txt new file mode 100644 index 0000000..16f9e77 --- /dev/null +++ b/History.txt @@ -0,0 +1,3 @@ +=== 0.1.0 / 2008-10-24 + +* Very beta/developery release \ No newline at end of file diff --git a/Manifest.txt b/Manifest.txt new file mode 100644 index 0000000..e69de29 diff --git a/Rakefile b/Rakefile index 85a6bc1..a547684 100644 --- a/Rakefile +++ b/Rakefile @@ -1,23 +1,17 @@ +# -*- ruby -*- require 'rubygems' require 'rake' require 'spec/rake/spectask' +require 'hoe' +require './lib/reddy.rb' -task :default => [:spec] - -desc "Install dependencies" -task :dependencies do - require '' - gems = ['addressable/uri', 'treetop'] - gems.each do |g| - g2 = g.split('/')[0] - begin - require g - rescue - sh "sudo gem install " + g2 - end - end +Hoe.new('reddy', '0.1.1') do |p| + p.rubyforge_name = 'reddy' + p.developer('Tom Morris', 'tom@tommorris.org') end +task :default => [:spec] + desc "Pushes to git" task :push do sh "git push --all" @@ -52,8 +46,4 @@ desc "Runs specs on JRuby" task :jspec do sh "jruby -S `whereis spec` --colour spec" end - -desc "Build gem" -task :build do - sh "gem build reddy.gemspec" -end \ No newline at end of file +# vim: syntax=Ruby \ No newline at end of file