Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Ignore EM::FileWatch constants in rdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Mar 18, 2009
1 parent 9baa105 commit a2a3f00
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/em/file_watch.rb
Expand Up @@ -3,9 +3,11 @@ module EventMachine
# This is subclassed from EventMachine::Connection for use with the file monitoring API. Read the
# documentation on the instance methods of this class, and for a full explanation see EventMachine.watch.
class FileWatch < Connection
Cmodified = 'modified'.freeze # :nodoc:
Cdeleted = 'deleted'.freeze # :nodoc:
Cmoved = 'moved'.freeze # :nodoc:
# :stopdoc:
Cmodified = 'modified'.freeze
Cdeleted = 'deleted'.freeze
Cmoved = 'moved'.freeze
# :startdoc:

def receive_data(data) #:nodoc:
case data
Expand Down

0 comments on commit a2a3f00

Please sign in to comment.