1831bf752f
It allows to define: watch("foo_bar.rb") without meaning /foo_bar.rb/ (where "foo_bar_rb.rb" would have been matched) However, during the deprecation phase, strings that look like a regexes (e.g. "^foo_bar.rb", "foo_bar.rb$", "foo_.*bar.rb" or "foo_(bar|baz).rb" are converted automatically to Regexp and a *very annoying* deprecation message is displayed.
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
== Dec 16, 2010 [by rymai]
|
|
|
|
Features:
|
|
- 'watch' patterns are now more strict: Strings are matched with '==', Regexp are matched with Regexp#match.
|
|
- A deprecation warning is displayed if your Guardfile contains String that look like Regexp (bad!).
|
|
|
|
== Nov 26, 2010 [by rymai]
|
|
|
|
Features:
|
|
- It's now possible to return an enumerable in the 'watch' optional blocks in the Guardfile.
|
|
- Listener now continue to watch changed files even when guards plugin are running.
|
|
|
|
Specs:
|
|
- Guard::Watcher
|
|
|
|
Bugs fixes:
|
|
- Avoid launching run_on_change guards method when no files matched. --clear guard argument is now usable.
|
|
|
|
== 0.2.2 (Oct 25, 2010)
|
|
|
|
Bugs fixes:
|
|
|
|
- Avoid creating new copy of fsevent_watch every time a file is changed. (issue #5)
|
|
|
|
== 0.2.1 (Oct 24, 2010)
|
|
|
|
Bugs fixes:
|
|
|
|
- Fixes for Linux support
|
|
|
|
== 0.2.0 (Oct 21, 2010)
|
|
|
|
Bugs fixes:
|
|
|
|
- Fixes for 1.8.6 compatibility (issue #2)
|
|
- guard init <guard-name> no more need Gemfile presence but open_gem is required now (issue #3)
|
|
- Removes growl & libnotify dependencies
|
|
|
|
== 0.2.0.beta.1 (Oct 17, 2010)
|
|
|
|
Features:
|
|
|
|
- Improved listeners support (rb-fsevent & rb-inotify)
|
|
- Added polling listening fallback |