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
JackDanger (author)
Thu Mar 06 15:26:03 -0800 2008
commit  a94d20401183c546740ecdcaa267729d7f46e442
tree    c35eb5084dd4bf4d6d852ac9e59ce2aed4f436c3
parent  4c4381bf4a04b19a1ab0ecaef860e23bd545b8ef
object_proxy / Rakefile
100644 14 lines (10 sloc) 0.351 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- 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