Commit Graph

85 Commits

Author SHA1 Message Date
Rémy Coutable
1831bf752f Guard no more automatically convert String into Regexp in "watch" method patterns.
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.
2010-12-16 01:22:42 +01:00
Thibaud Guillaume-Gentil
62f9cd5311 Fixed yesterday merge 2010-12-01 08:37:31 +01:00
Thibaud Guillaume-Gentil
b16239cdc5 Added guard-stendhal & guard-soca 2010-11-30 22:46:52 +01:00
Thibaud Guillaume-Gentil
2fc6745837 Merge branch 'master' of github.com:guard/guard
Conflicts:
	lib/guard.rb
	lib/guard/interactor.rb
	spec/guard_spec.rb
2010-11-30 21:23:53 +01:00
Thibaud Guillaume-Gentil
53a79691a5 Kept listener running in thread even when guards plugin are also running. 2010-11-30 21:15:03 +01:00
Thibaud Guillaume-Gentil
ae55268e88 Updated Changelog 2010-11-25 23:37:56 -08:00
Thibaud Guillaume-Gentil
bb56c41a49 Using %|...| regex in Guardfile example 2010-11-25 23:35:46 -08:00
Rémy Coutable
7f39a55fdf Use 'guard' instead of 'g', use parenthesis and don't explicitly return when not necessary 2010-11-26 00:58:36 +01:00
Rémy Coutable
3116b13f1b Optimized spec_helper, remove useless code and add the "bypass when test env" for UI.error 2010-11-26 00:57:08 +01:00
Rémy Coutable
cda514cf2a Updated Changelog and Readme 2010-11-26 00:56:18 +01:00
Rémy Coutable
47d1e11743 Added specs for Guard::Watcher, allow enumerables in 'watch' blocks. 2010-11-26 00:55:21 +01:00
Thibaud Guillaume-Gentil
85beb5e97a Don't call run_on_change guard method when there is no matched files. 2010-11-25 08:52:53 +01:00
Thibaud Guillaume-Gentil
eebd74b253 Added options to error/debug UI method 2010-11-11 11:02:29 +01:00
Thibaud Guillaume-Gentil
0e88105faa Added guard-ego/jammit/spork to README, awesome! 2010-11-11 08:22:35 +01:00
Rémy Coutable
e2247ea732 Improving, cleaning & making clear Guard class' specs 2010-11-03 23:31:00 +01:00
Thibaud Guillaume-Gentil
8d1ac00bcb Added guard-cucumber in readme
Ordred guards alphabetically
2010-10-31 20:48:29 +01:00
Rémy Coutable
7a83f726d5 "Speed up" polling specs a bit 2010-10-30 22:42:33 +02:00
Rémy Coutable
39ea8441c0 Avoid using actual fixture files, instead mock Guardfile content (this way we can directly see tested Guardfile content in the specs. 2010-10-30 22:42:17 +02:00
Olivier Amblet
dd1100b4ae Added DSL specs and improved error message.
DSL now have basics specs that confirm it works
I splitted file not found and invalid Guardfile
error message because it was confusing to know
in which case you are when it occurs :)
2010-10-30 18:26:09 +02:00
Yann Lugrin
4da879e849 Add guard-nanoc 2010-10-28 11:00:18 +02:00
Thibaud Guillaume-Gentil
9c15536eda Little "refactoring" 2010-10-28 08:47:26 +02:00
Thibaud Guillaume-Gentil
01bf7505cd Merge branch 'master' of http://github.com/oliamb/guard into oliamb-master
Conflicts:
	lib/guard/guard.rb
2010-10-28 08:23:02 +02:00
Thibaud Guillaume-Gentil
2224ebe13a Merge branch 'master' of github.com:guard/guard 2010-10-27 22:14:31 +02:00
Thibaud Guillaume-Gentil
470e763339 Updated guard methods readme 2010-10-27 22:14:21 +02:00
Olivier Amblet
cb8b845eb6 A bad guard do not threaten the whole process.
Every guard task are now executed through
supervised_task method.

If a guard failed to achieve its task(raise error)
a message is logged and the guard is fired.

The stop method now always quit the application
at the end.

Specs added. The documentation specify that if a
throw an exception, it will be dismissed.
2010-10-27 15:18:00 +02:00
Yann Lugrin
02d081e84d fix changelog version number and release date 2010-10-27 14:06:26 +02:00
Thibaud Guillaume-Gentil
3d4b0d080d Added guards authors 2010-10-26 21:47:36 +02:00
Thibaud Guillaume-Gentil
728ae8cbe7 Added guard-coffeescript 2010-10-26 21:36:08 +02:00
Thibaud Guillaume-Gentil
a38b1ecc60 Bump to 0.2.2 2010-10-26 21:24:29 +02:00
Thibaud Guillaume-Gentil
edeaa1e864 Depends on rb-fsevent >= 0.3.5 for ruby 1.8.6 support 2010-10-26 21:24:04 +02:00
Thibaud Guillaume-Gentil
9c89577a6d Merge branch 'master' of http://github.com/oliamb/guard into oliamb-master 2010-10-26 20:16:11 +02:00
Olivier Amblet
20d6938cf6 Added some docs about stop method
Tell about the fact that the stop metod must
return a value which can be evaluated to true if
everything went well.
2010-10-26 19:28:49 +02:00
Yann Lugrin
3e44f396e5 remove Gemfile.lock from repo 2010-10-26 16:51:10 +02:00
Thibaud Guillaume-Gentil
6c89086dea Updated Notifier readme 2010-10-25 21:36:45 +02:00
Thibaud Guillaume-Gentil
5d0ec698de Properly close rb-fsevent pipe after killed it
Closes #5.
2010-10-25 21:36:04 +02:00
Yann Lugrin
7bae189eba more specs on linux listener 2010-10-25 11:16:56 +02:00
Yann Lugrin
0bff5e86d8 wait latency before inotify process to better prevent multiple run of guard on change 2010-10-25 10:24:33 +02:00
Yann Lugrin
6730679cc4 fix guard-bundler url in README 2010-10-24 18:38:45 +02:00
Yann Lugrin
4f4ec47e71 add guard-bundler to available guards list 2010-10-24 18:12:06 +02:00
Thibaud Guillaume-Gentil
df5278e988 Bump to 0.2.1 2010-10-24 10:31:16 +02:00
Thibaud Guillaume-Gentil
9742ce86a0 Updated rb-fsevent 2010-10-24 10:31:00 +02:00
Yann Lugrin
7af452dc4c don't need to be dup 2010-10-24 04:30:10 +08:00
Yann Lugrin
dd04914657 Linux support work fine now, don't loop more one time on same test. 2010-10-24 04:30:10 +08:00
Yann Lugrin
4daae46444 ensure don't have inotify event from past example in following example 2010-10-24 04:30:09 +08:00
Yann Lugrin
080ffe2efc stop linux listener quickly 2010-10-24 04:30:09 +08:00
Yann Lugrin
e19a9304ec Change inotify watch options to not fire event when file is juste read 2010-10-24 04:30:08 +08:00
Yann Lugrin
3cdcea3dfd locate_guard chomp newline at end of path 2010-10-24 04:30:07 +08:00
Thibaud Guillaume-Gentil
5371f467ff Bump to 0.2.0 2010-10-21 20:56:22 +02:00
Thibaud Guillaume-Gentil
8f0cb7c9e7 Updated Readme & Changelog 2010-10-21 20:56:09 +02:00
Yann Lugrin
59f9a9dafb guard notification work when guard guard 2010-10-22 02:24:03 +08:00