lib/rb-inotify.rb in rb-inotify-0.5.0 vs lib/rb-inotify.rb in rb-inotify-0.5.1
- old
+ new
@@ -7,6 +7,11 @@
# 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; end
+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, 5, 1]
+end