1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/observer.rb: Update broken link to the Programming Ruby book.

Patch by Zachary Scott.  [ruby-trunk - Bug #6536]
* lib/drb/drb.rb:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2012-06-13 21:18:29 +00:00
parent b41bc68688
commit 3d81b5c848
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Thu Jun 14 06:17:47 2012 Eric Hodel <drbrain@segment7.net>
* lib/observer.rb: Update broken link to the Programming Ruby book.
Patch by Zachary Scott. [ruby-trunk - Bug #6536]
* lib/drb/drb.rb: ditto.
Thu Jun 14 05:23:05 2012 NARUSE, Yui <naruse@ruby-lang.org> Thu Jun 14 05:23:05 2012 NARUSE, Yui <naruse@ruby-lang.org>
* regparse.c (PFETCH_READY): suppress Wunused-but-set-variable. * regparse.c (PFETCH_READY): suppress Wunused-but-set-variable.

View file

@ -44,7 +44,7 @@
# [http://www.eng.cse.dmu.ac.uk/~hgs/ruby/dRuby/] # [http://www.eng.cse.dmu.ac.uk/~hgs/ruby/dRuby/]
# Links to English-language Ruby material collected by Hugh Sasse. # Links to English-language Ruby material collected by Hugh Sasse.
# #
# [http://www.rubycentral.com/book/ospace.html] # [http://www.ruby-doc.org/docs/ProgrammingRuby/html/ospace.html]
# The chapter from *Programming* *Ruby* by Dave Thomas and Andy Hunt # The chapter from *Programming* *Ruby* by Dave Thomas and Andy Hunt
# which discusses dRuby. # which discusses dRuby.
# #

View file

@ -1,7 +1,7 @@
# #
# Implementation of the _Observer_ object-oriented design pattern. The # Implementation of the _Observer_ object-oriented design pattern. The
# following documentation is copied, with modifications, from "Programming # following documentation is copied, with modifications, from "Programming
# Ruby", by Hunt and Thomas; http://www.rubycentral.com/book/lib_patterns.html. # Ruby", by Hunt and Thomas; http://www.ruby-doc.org/docs/ProgrammingRuby/html/lib_patterns.html.
# #
# See Observable for more info. # See Observable for more info.