Sha256: eecc05fbae22ae6abbdcf1f90251cf27c98651c4ad5292d0c5cbeb7a8d3531ed

Contents?: true

Size: 691 Bytes

Versions: 2

Compression:

Stored size: 691 Bytes

Contents

# -*- ruby -*-
$:.unshift(File.expand_path(File.dirname(__FILE__)+"/lib/"))
require 'rubygems'
require 'hoe'
require 'distribution'
require 'rubyforge'
# Hoe.plugin :compiler
# Hoe.plugin :gem_prelude_sucks
 Hoe.plugin :git
# Hoe.plugin :inline
# Hoe.plugin :racc
 Hoe.plugin :rubyforge

Hoe.spec 'distribution' do
  self.developer('Claudio Bustos', 'clbustos_at_gmail.com')
  self.version=Distribution::VERSION
  self.extra_dev_deps << ["rspec",">=2.0"] << ["rubyforge",">=0"]

end
# git log --pretty=format:"*%s[%cn]" v0.5.0..HEAD >> History.txt
desc "Open an irb session preloaded with distribution"
task :console do
  sh "irb -rubygems -I lib -r distribution.rb"
end

# vim: syntax=ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
distribution-0.7.0 Rakefile
distribution-0.6.0 Rakefile