JackDanger / ruby_prototype

Provides Ruby1.9 with a method prototyping interface

ruby_prototype / Rakefile
100644 14 lines (10 sloc) 0.376 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/ruby_prototype.rb'
 
Hoe.new('ruby_prototype', RubyPrototype::VERSION) do |p|
  # p.rubyforge_name = 'ruby_prototypex' # if different than lowercase project name
  p.developer('Jack Danger Canty', 'rubygems@6brand.com')
  p.summary = "Provides Ruby1.9 with a method prototyping interface"
end
 
# vim: syntax=Ruby