Skip to content

Commit

Permalink
* lib/delegate.rb: split executable code into sample directory.
Browse files Browse the repository at this point in the history
* sample/delegate.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
hsbt committed Jul 26, 2014
1 parent 1788d08 commit 6d6bd26
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 34 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Sun Jul 27 02:06:55 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>

* lib/delegate.rb: split executable code into sample directory.
* sample/delegate.rb: ditto.

Sun Jul 27 01:46:34 2014 Zachary Scott <e@zzak.io>

* proc.c (method_super_method): [DOC] Method#super_method
Expand Down
34 changes: 0 additions & 34 deletions lib/delegate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -415,37 +415,3 @@ def __setobj__(obj) # :nodoc:
end
return klass
end

# :enddoc:

if __FILE__ == $0
class ExtArray<DelegateClass(Array)
def initialize()
super([])
end
end

ary = ExtArray.new
p ary.class
ary.push 25
p ary
ary.push 42
ary.each {|x| p x}

foo = Object.new
def foo.test
25
end
def foo.iter
yield self
end
def foo.error
raise 'this is OK'
end
foo2 = SimpleDelegator.new(foo)
p foo2
foo2.instance_eval{print "foo\n"}
p foo.test == foo2.test # => true
p foo2.iter{[55,true]} # => true
foo2.error # raise error!
end
31 changes: 31 additions & 0 deletions sample/delegate.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
require 'delegate'

class ExtArray<DelegateClass(Array)
def initialize()
super([])
end
end

ary = ExtArray.new
p ary.class
ary.push 25
p ary
ary.push 42
ary.each {|x| p x}

foo = Object.new
def foo.test
25
end
def foo.iter
yield self
end
def foo.error
raise 'this is OK'
end
foo2 = SimpleDelegator.new(foo)
p foo2
foo2.instance_eval{print "foo\n"}
p foo.test == foo2.test # => true
p foo2.iter{[55,true]} # => true
foo2.error # raise error!

0 comments on commit 6d6bd26

Please sign in to comment.