public
Rubygem
Description: ObjectProxy provides a proxied interface to Ruby objects. It lets you add methods to objects that don't normally support them.
Homepage: http://6brand.com
Clone URL: git://github.com/JackDanger/object_proxy.git
Search Repo:
object_proxy / Rakefile
100644 13 lines (10 sloc) 0.351 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/object_proxy.rb'
 
Hoe.new('object_proxy', ObjectProxy::VERSION) do |p|
  p.rubyforge_name = 'objectproxy' # if different than lowercase project name
  p.remote_rdoc_dir = '' # Release to root
  p.developer('Jack Danger Canty', 'rubygems_object_proxy@6brand.com')
end
 
# vim: syntax=Ruby