home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ruby164.zip / rbemx164.zip / ruby / share / doc / rdtool-0.6.10 / test / dummy-observer.rb next >
Text File  |  2001-04-23  |  88b  |  8 lines

  1.  
  2. class DummyObserver
  3.   attr_reader :args
  4.   def update(*args)
  5.     @args = args
  6.   end
  7. end
  8.