Methods
D
N
U
Included Modules
Class Public methods
new(biff, command)
# File sample/drb/dcdbiff.rb, line 11
def initialize(biff, command)
  @biff = biff
  @command = command

  @biff.add_observer(self)
end
Instance Public methods
done()
# File sample/drb/dcdbiff.rb, line 23
def done
  begin
    @biff.delete_observer(self)
  rescue
  end
end
update(filename, time)
# File sample/drb/dcdbiff.rb, line 18
def update(filename, time)
  p [filename, time] if $DEBUG
  system(@command)
end