Sha256: 9296ec367a025f6db00ec4da1f7d90d9a2936067a9196aa487b5ede926cc2f2d

Contents?: true

Size: 573 Bytes

Versions: 1

Compression:

Stored size: 573 Bytes

Contents

require 'rb-inotify/native'
require 'rb-inotify/native/flags'
require 'rb-inotify/notifier'
require 'rb-inotify/watcher'
require 'rb-inotify/event'

# The root module of the library, which is laid out as so:
#
# * {Notifier} -- The main class, where the notifications are set up
# * {Watcher} -- A watcher for a single file or directory
# * {Event} -- An filesystem event notification
module INotify
  # An array containing the version number of rb-inotify.
  # The numbers in the array are the major, minor, and patch versions,
  # respectively.
  VERSION = [0, 8, 4]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rb-inotify-0.8.4 lib/rb-inotify.rb