Skip to content

Commit

Permalink
Release 0.1.0 packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
tommorris committed Oct 24, 2008
1 parent a3333c5 commit cf1332a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 19 deletions.
2 changes: 2 additions & 0 deletions 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.
3 changes: 3 additions & 0 deletions History.txt
@@ -0,0 +1,3 @@
=== 0.1.0 / 2008-10-24

* Very beta/developery release
Empty file added Manifest.txt
Empty file.
28 changes: 9 additions & 19 deletions 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"
Expand Down Expand Up @@ -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
# vim: syntax=Ruby

0 comments on commit cf1332a

Please sign in to comment.