guard 0.8.4 → 0.8.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,330 +1,348 @@
1
- ## 0.8.4 - October 3, 2011
2
-
3
- ### Bug fix
4
-
5
- - [#149](https://github.com/guard/guard/issues/149) & [#150](https://github.com/guard/guard/pull/150): Fix issue where interator thread was continuing to capture input from stdin while a guard is being executed. (reported by [@hardipe][], fixed by [@f1sherman][])
6
-
7
- ## 0.8.3 - October 1, 2011
8
-
9
- ### Bug fix
10
-
11
- - [#145](https://github.com/guard/guard/pull/145): Fix over-utilization of CPU in Interactor. ([@johnbintz][])
12
-
13
- ### Improvements
14
-
15
- - [#146](https://github.com/guard/guard/pull/146): Use a mutex instead of a lock for more efficient/simple locking. ([@f1sherman][])
16
- - Make Guard implementation of `:task_has_failed` simple. ([@netzpirat][])
17
-
18
- ## 0.8.2 - September 30, 2011
19
-
20
- ### Bug fix
21
-
22
- - Fixed guard stop to prevent run_guard_task(:stop) to be skipped [guard-spork issue #28](https://github.com/guard/guard-spork/issues/28). ([@thibaudgg][])
23
-
24
- ### Improvement
25
-
26
- - Update docs regarding :task_has_failed. ([@netzpirat][])
27
-
28
- ## 0.8.1 - September 29, 2011
29
-
30
- ### Bug fix
31
-
32
- - [#144](https://github.com/guard/guard/pull/144): Fix `guard init`. (reported by [@fabioyamate][], fixed by [@rymai][])
33
-
34
- ## 0.8.0 - September 28, 2011
35
-
36
- ### Bug fixes
37
-
38
- - [#137](https://github.com/guard/guard/pull/137): Fix interacting with tools like ruby-debug. ([@hron][] & [@netzpirat][])
39
- - [#138](https://github.com/guard/guard/pull/138): Fixed comments in example scaffold to reference interactions. ([@rmm5t][] & [@netzpirat][])
40
-
41
- ### New feature
42
-
43
- - [#136](https://github.com/guard/guard/pull/136): New CLI `:watch_all_modifications`/`-A` option to watch for deleted and moved files too. ([@limeyd][] & [@netzpirat][])
44
- - [#97](https://github.com/guard/guard/issues/97): Guard dependencies. Task execution can now be halted if a Guard throws `:task_has_failed` and `Guard::Dsl#group` options include `:halt_on_fail => true`. ([@rymai][])
45
- - [#121](https://github.com/guard/guard/issues/121): `Guard.guards` and `Guard.groups` are now smart accessors. Filters can be passed to find a specific Guard/group or several Guards/groups that match (see YARDoc). ([@rymai][] & [@ches][])
46
- - New `Guard::Group` class to store groups defined in Guardfile (with `Guard::Dsl#group`). ([@rymai][])
47
-
48
- ### Improvements
49
-
50
- - Specs refactoring. ([@netzpirat][])
51
- - Full YARD documentation. ([@netzpirat][] & a little of [@rymai][])
52
-
53
- ## 0.7.0 - September 14, 2011
54
-
55
- ## 0.7.0.rc1 - September 5, 2011
56
-
57
- ### Major Changes
58
-
59
- - Posix Signals handlers (`Ctrl-C`, `Ctrl-\` and `Ctrl-Z`) are no more supported and replaced by `$stdin.gets`. Please refer to the "Interactions" section in the README for more information. ([@thibaudgg][])
60
- - JRuby & Rubinius support (beta). ([@thibaudgg][] & [@netzpirat][])
61
-
62
- ### New features
63
-
64
- - [#42](https://github.com/guard/guard/pull/42): New DSL method: `callback` allows you to execute arbitrary code before or after any of the `start`, `stop`, `reload`, `run_all` and `run_on_change` guards' method. New [Wiki page](https://github.com/guard/guard/wiki/Hooks-and-callbacks) for documenting it. ([@monocle][] & [@rymai][])
65
- - Ability to 'pause' files modification listening. Please refer to the "Interactions" section in the README for more information. ([@thibaudgg][])
66
-
67
- ### Improvement
68
-
69
- - Remove the need to scan the whole directory after guard's `run_on_change` method. ([@thibaudgg][])
70
-
71
- ## 0.6.3 - September 1, 2011
72
-
73
- ### New features
74
-
75
- - [#130](https://github.com/guard/guard/pull/130): Adds `ignore_paths` method to DSL. ([@ianwhite][])
76
- - [#128](https://github.com/guard/guard/pull/128): Users can add additional settings to `~/.guard.rb` that augment the existing Guardfile. ([@tpope][])
77
-
78
- ## 0.6.2 - August 17, 2011
79
-
80
- ### Bug fixes
81
-
82
- - Re-add the possibility to use the `growl` gem since the `growl_notify` gem this is currently known to not work in conjunction with Spork. ([@netzpirat][])
83
- - Ensure that scoped groups and group name are symbolized before checking for inclusion. ([@rymai][])
84
-
85
- ### New features
86
-
87
- - Groups are now stored in a `@groups` variable (will be used for future features). ([@rymai][])
88
- - Guards will now receive their group in the options hash at initialization (will be used for future features). ([@rymai][])
89
-
90
- ### Improvement
91
-
92
- - Explain the growl/growl_notify differences in the README. ([@netzpirat][])
93
-
94
- ## 0.6.1 - August 15, 2011
95
-
96
- ### Bug fixes
97
-
98
- - [#120](https://github.com/guard/guard/pull/120): remove `guardfile_contents` when re-evaluating so that the Guardfile gets reloaded correctly. ([@mordaroso][])
99
- - [#119](https://github.com/guard/guard/pull/119): `Dsl.evaluate_guardfile` uses all groups if none specified. ([@ches][])
100
-
101
- ## 0.6.0 - August 13, 2011
102
-
103
- ### Bug fixes
104
-
105
- - Pull request [#107](https://github.com/guard/guard/pull/107): Small spelling fix. ([@dnagir][])
106
- - `Dir.glob` now ignores files that don't need to be watched. ([@rymai][])
107
-
108
- ### New feature
109
-
110
- - Pull request [#112](https://github.com/guard/guard/pull/112): Add `list` command to CLI. ([@docwhat][])
111
-
112
- ### Improvements
113
-
114
- - [#99](https://github.com/guard/guard/pull/99): [OS X] Switch from growl gem to growl_notify gem. ([@johnbintz][])
115
- - [#115](https://github.com/guard/guard/pull/115): [Linux] Add `:transient => true` to default libnotify options. ([@zonque][])
116
- - [#95](https://github.com/guard/guard/pull/95): Output system commands and options to be executed when in debug mode. ([@uk-ar][] and [@netzpirat][])
117
- - `Guard::Dsl.revaluate_guardfile` has been renamed to `Guard::Dsl.reevaluate_guardfile`. ([@rymai][])
118
- - New CLI options: ([@nestegg][])
119
- - `watchdir`/`-w` to specify the directory in which Guard should watch for changes,
120
- - `guardfile`/`-G` to specify an alternate location for the Guardfile to use.
121
- - [#90](https://github.com/guard/guard/pull/90): Refactoring of color handling in the `Guard::UI`. ([@stereobooster][])
122
-
123
- ## 0.5.1 - July 2, 2011
124
-
125
- ### Bug fix
126
-
127
- - Fixed `guard show` command. ([@bronson][] & [@thibaudgg][])
128
-
129
- ## 0.5.0 - July 2, 2011
130
-
131
- ### New features
132
-
133
- - Guard::Ego is now part of Guard, so Guardfile is automagically re-evaluated when modified. ([@thibaudgg][])
134
- - [#91](https://github.com/guard/guard/pull/91): Show Guards in Guardfile with the `guard -T`. ([@johnbintz][])
135
-
136
- ### Improvements
137
-
138
- - [#98](https://github.com/guard/guard/issues/98): Multiple calls per watch event on linux with rb-inotify. ([@jeffutter][] & [@netzpirat][])
139
- - [#94](https://github.com/guard/guard/pull/94): Show backtrace in terminal when a problem with a watch action occurs. ([@capotej][])
140
- - [#88](https://github.com/guard/guard/pull/88): Write exception trace in the terminal when a supervised task fail. ([@mcmire][])
141
- - Color in red the "ERROR:" flag when using `UI.error`. ([@rymai][])
142
- - [#79](https://github.com/guard/guard/issues/79) and Pull request [#82](https://github.com/guard/guard/pull/82): Improve INotify support on Linux. ([@Gazer][] & [@yannlugrin][])
143
- - [#12](https://github.com/guard/guard/issues/12) and Pull request [#86](https://github.com/guard/guard/pull/86): Eventually exits with SystemStackError. ([@stereobooster][])
144
- - [#84](https://github.com/guard/guard/pull/84): Use RbConfig instead of obsolete and deprecated Config. ([@etehtsea][])
145
- - [#80](https://github.com/guard/guard/pull/80): Watching dotfile (hidden files under unix). (reported by [@chrisberkhout][], fixed by [@yannlugrin][])
146
- - Clear the terminal on start when the `:clear` option is given. ([@rymai][])
147
- - Rename home directory Guardfile to `.Guardfile`. ([@tpope][])
148
-
149
- ## 0.4.2 - June 7, 2011
150
-
151
- ### Bug fixes
152
-
153
- - Fixed Guard::Version in ruby 1.8.7 ([@thibaudgg][])
154
- - Fix ([@mislav][]) link in CHANGELOG (Note: this is a recursive CHANGELOG item). ([@fnichol][])
155
-
156
- ## 0.4.1 - June 7, 2011
157
-
158
- ### Improvements
159
-
160
- - [#77](https://github.com/guard/guard/pull/77): Refactor `get_guard_class` to first try the constant and fallback to require + various tweaks. ([@mislav][])
161
- - Notifier improvement, don't use system notification library if could not be required. ([@yannlugrin][])
162
-
163
- ## 0.4.0 - June 5, 2011
164
-
165
- ### Bug fix
166
-
167
- - In Ruby < 1.9, `Symbol#downcase` doesn't exist! ([@rymai][])
168
-
169
- ### New features
170
-
171
- - [#73](https://github.com/guard/guard/pull/73): Allow DSL's `group` method to accept a Symbol as group name. ([@johnbintz][])
172
- - [#51](https://github.com/guard/guard/pull/51): Allow options (like `:priority`) to be passed through to the Notifier. ([@indirect][] & [@netzpirat][])
173
-
174
- ### Improvement
175
-
176
- - [#74](https://github.com/guard/guard/pull/74): Added link definitions to make the CHANGELOG more DRY! That's for sure now, we have the cleanest CHANGELOG ever! (even the link definitions are sorted alphabetically!) ([@pcreux][])
177
-
178
- ## 0.4.0.rc - May 28, 2011
179
-
180
- ### Bug fixes
181
-
182
- - [#69](https://github.com/guard/guard/pull/69): Fixed typo in README: `Ctr-/` => `Ctr-\`. ([@tinogomes][])
183
- - [#66](https://github.com/guard/guard/pull/66): Support for dashes in guard names. ([@johnbintz][])
184
- - Require `guard/ui` because `Guard::Notifier` can be required without full Guard. ([@yannlugrin][])
185
- - Handled quick file (<1s) modification. Avoid to catch modified files without content modification (sha1 checksum). ([@thibaudgg][] & [@netzpirat][])
186
- - Fixed `Guard::Notifier` (when growl/libnotify not present). ([@thibaudgg][])
187
- - Fixed Rubygems deprecation messages. ([@thibaudgg][])
188
-
189
- ### New features
190
-
191
- - [#67](https://github.com/guard/guard/pull/67): Allow Guardfile in `$HOME` folder. ([@hashrocketeer][])
192
- - [#64](https://github.com/guard/guard/pull/64): Windows notifications support. ([@stereobooster][])
193
- - [#63](https://github.com/guard/guard/pull/63): Refactor listeners to work as a library. ([@niklas][])
194
- - Use `ENV["GUARD_NOTIFY"]` to disable notifications. ([@thibaudgg][])
195
- - Cleaning up all specs. ([@netzpirat][])
196
- - [#60](https://github.com/guard/guard/pull/60): Added Windows support. ([@stereobooster][])
197
- - [#58](https://github.com/guard/guard/pull/58): Extract code from signal handlers into methods. ([@nicksieger][])
198
- - [#55](https://github.com/guard/guard/pull/55): It is now possible to pass `:guardfile` (a Guardfile path) or `:guardfile_contents` (the content of a Guardfile) to `Guard::Dsl.evaluate_guardfile`. Hence this allows the use of `Guard::Dsl.evaluate_guardfile` in a programmatic manner. ([@anithri][], improved by [@rymai][])
199
-
200
- ## 0.3.4 - April 24, 2011
201
-
202
- ### Bug fix
203
-
204
- - [#41](https://github.com/guard/guard/issues/41): Removed useless Bundler requirement. ([@thibaudgg][])
205
-
206
- ### New features
207
-
208
- - Changed CHANGELOG from RDOC to Markdown and cleaned it! Let's celebrate! ([@rymai][])
209
- - Changed README from RDOC to Markdown! Let's celebrate! ([@thibaudgg][])
210
- - [#48](https://github.com/guard/guard/issues/48): Adding support for inline Guard classes rather than requiring a gem. ([@jrsacks][])
211
-
212
- ## 0.3.3 - April 18, 2011
213
-
214
- ### Bug fix
215
-
216
- - Fixed `new_modified_files` rerun conditions on `Guard.run_on_change_for_all_guards`. ([@thibaudgg][])
217
-
218
- ## 0.3.2 - April 17, 2011
219
-
220
- ### Bug fixe
221
-
222
- - [#43](https://github.com/guard/guard/pull/43): Fixed `guard init` command. ([@brainopia][])
223
-
224
- ## 0.3.1 - April 14, 2011
225
-
226
- ### Bug fixes
227
-
228
- - Return unique filenames from Linux listener. (Marian Schubert)
229
- - `Guard.get_guard_class` return wrong class when loaded nested class. ([@koshigoe][])
230
- - [#35](https://github.com/guard/guard/issues/35): Fixed open-gem/gem_open dependency problem by using `gem which` to locate guards gem path. (reported by [@thierryhenrio][], fixed by [@thibaudgg][])
231
- - [#38](https://github.com/guard/guard/issues/38) & Pull request [#39](https://github.com/guard/guard/issues/39): Fixed an invalid ANSI escape code in `Guard::UI.reset_line`. ([@gix][])
232
-
233
- ### New feature
234
-
235
- - [#28](https://github.com/guard/guard/issues/28): New `-n` command line option to disable notifications (Growl / Libnotify). ([@thibaudgg][])
236
-
237
- ## 0.3.0 - January 19, 2011
238
-
239
- ### Bug fix
240
-
241
- - Avoid launching `run_on_change` guards method when no files matched. `--clear` guard argument is now usable. ([@thibaudgg][])
242
-
243
- ### New features
244
-
245
- - The whole directory is now watched during `run_on_change` to detect new files modifications. ([@thibaudgg][])
246
- - [#26](https://github.com/guard/guard/pull/26): New DSL method: `group` allows you to group several guards. New CLI option: `--group group_name` to specify certain groups of guards to start. ([@netzpirat][])
247
- - `watch` patterns are now more strict: strings are matched with `String#==`, `Regexp` are matched with `Regexp#match`. ([@rymai][])
248
- - A deprecation warning is displayed if your `Guardfile` contains `String` that look like `Regexp` (bad!). ([@rymai][])
249
- - It's now possible to return an `Enumerable` in the `watch` optional blocks in the `Guardfile`. ([@rymai][])
250
-
251
- ### New specs
252
-
253
- - `Guard::Watcher`. ([@rymai][])
254
- - [#13](https://github.com/guard/guard/pull/13): `Guard::Dsl`. ([@oliamb][])
255
-
256
- ## 0.2.2 - October 25, 2010
257
-
258
- ### Bug fix
259
-
260
- - [#5](https://github.com/guard/guard/issues/5): avoid creating new copy of `fsevent_watch` every time a file is changed. (reported by [@stouset][], fixed by [@thibaudgg][])
261
-
262
- ## 0.2.1 - October 24, 2010
263
-
264
- ### Bug fixes
265
-
266
- - [#7](https://github.com/guard/guard/pull/7): Fixes for Linux support. ([@yannlugrin][])
267
- - [#6](https://github.com/guard/guard/pull/6): Locate guard now chomp newline in result path. ([@yannlugrin][])
268
-
269
- ## 0.2.0 - October 21, 2010
270
-
271
- ### Bug fixes
272
-
273
- - [#3](https://github.com/guard/guard/issues/3): `guard init <guard-name>` no more need `Gemfile` but `open_gem` is required now. (reported by [@wereHamster][], fixed by [@thibaudgg][])
274
- - [#2](https://github.com/guard/guard/issues/2): 1.8.6 compatibility. (reported by [@veged][], fixed by [@thibaudgg][])
275
- - Removes Growl & Libnotify dependencies. ([@thibaudgg][])
276
-
277
- ## 0.2.0.beta.1 - October 17, 2010
278
-
279
- ### New features
280
-
281
- - Improved listeners support (`rb-fsevent` & `rb-inotify`). ([@thibaudgg][])
282
- - Added polling listening fallback. ([@thibaudgg][])
283
-
284
- [@anithri]: https://github.com/anithri
285
- [@brainopia]: https://github.com/brainopia
286
- [@bronson]: https://github.com/bronson
287
- [@capotej]: https://github.com/capotej
288
- [@ches]: https://github.com/ches
289
- [@chrisberkhout]: https://github.com/chrisberkhout
290
- [@dnagir]: https://github.com/dnagir
291
- [@docwhat]: https://github.com/docwhat
292
- [@etehtsea]: https://github.com/etehtsea
293
- [@f1sherman]: https://github.com/f1sherman
294
- [@fabioyamate]: https://github.com/fabioyamate
295
- [@fnichol]: https://github.com/fnichol
296
- [@Gazer]: https://github.com/Gazer
297
- [@gix]: https://github.com/gix
298
- [@hron]: https://github.com/hron
299
- [@hardipe]: https://github.com/hardipe
300
- [@hashrocketeer]: https://github.com/hashrocketeer
301
- [@ianwhite]: https://github.com/ianwhite
302
- [@indirect]: https://github.com/indirect
303
- [@jeffutter]: https://github.com/jeffutter
304
- [@johnbintz]: https://github.com/johnbintz
305
- [@jrsacks]: https://github.com/jrsacks
306
- [@koshigoe]: https://github.com/koshigoe
307
- [@limeyd]: https://github.com/limeyd
308
- [@mcmire]: https://github.com/mcmire
309
- [@mislav]: https://github.com/mislav
310
- [@monocle]: https://github.com/monocle
311
- [@mordaroso]: https://github.com/mordaroso
312
- [@nestegg]: https://github.com/nestegg
313
- [@netzpirat]: https://github.com/netzpirat
314
- [@nicksieger]: https://github.com/nicksieger
315
- [@niklas]: https://github.com/niklas
316
- [@oliamb]: https://github.com/oliamb
317
- [@pcreux]: https://github.com/pcreux
318
- [@rmm5t]: https://github.com/rmm5t
319
- [@rymai]: https://github.com/rymai
320
- [@stereobooster]: https://github.com/stereobooster
321
- [@stouset]: https://github.com/stouset
322
- [@thibaudgg]: https://github.com/thibaudgg
323
- [@thierryhenrio]: https://github.com/thierryhenrio
324
- [@tinogomes]: https://github.com/tinogomes
325
- [@tpope]: https://github.com/tpope
326
- [@uk-ar]: https://github.com/uk-ar
327
- [@veged]: https://github.com/veged
328
- [@wereHamster]: https://github.com/wereHamster
329
- [@yannlugrin]: https://github.com/yannlugrin
330
- [@zonque]: https://github.com/zonque
1
+ ## 0.8.5 - October 17, 2011
2
+
3
+ ### Improvements
4
+
5
+ - `reload` and `run_all` Guard terminal interactions actions can be scoped to only run on a certain guard or group. ([@thibaudgg][])
6
+ - Add cli option (-i / --no-interactions) to turn off Guard terminal interactions. ([@thibaudgg][])
7
+ - Add support for Growl Notification Transport Protocol. ([@netzpirat][])
8
+ - [#157](https://github.com/guard/guard/pull/157): Allow any return from the Guard watchers. ([@earlonrails][])
9
+ - [#156](https://github.com/guard/guard/pull/156): Log error and diagnostic messages to STDERR. ([@sunaku][])
10
+ - [#152](https://github.com/guard/guard/pull/152): Growl Notify API update for a graceful fail. ([@scottdavis][])
11
+
12
+ ### Bug fix
13
+
14
+ - [#149](https://github.com/guard/guard/issues/160): Avoid `Guard is not missing constant ...` exceptions. (reported by [@earlonrails][], fixed by [@netzpirat][])
15
+
16
+ ## 0.8.4 - October 3, 2011
17
+
18
+ ### Bug fix
19
+
20
+ - [#149](https://github.com/guard/guard/issues/149) & [#150](https://github.com/guard/guard/pull/150): Fix issue where interator thread was continuing to capture input from stdin while a guard is being executed. (reported by [@hardipe][], fixed by [@f1sherman][])
21
+
22
+ ## 0.8.3 - October 1, 2011
23
+
24
+ ### Bug fix
25
+
26
+ - [#145](https://github.com/guard/guard/pull/145): Fix over-utilization of CPU in Interactor. ([@johnbintz][])
27
+
28
+ ### Improvements
29
+
30
+ - [#146](https://github.com/guard/guard/pull/146): Use a mutex instead of a lock for more efficient/simple locking. ([@f1sherman][])
31
+ - Make Guard implementation of `:task_has_failed` simple. ([@netzpirat][])
32
+
33
+ ## 0.8.2 - September 30, 2011
34
+
35
+ ### Bug fix
36
+
37
+ - Fixed guard stop to prevent run_guard_task(:stop) to be skipped [guard-spork issue #28](https://github.com/guard/guard-spork/issues/28). ([@thibaudgg][])
38
+
39
+ ### Improvement
40
+
41
+ - Update docs regarding :task_has_failed. ([@netzpirat][])
42
+
43
+ ## 0.8.1 - September 29, 2011
44
+
45
+ ### Bug fix
46
+
47
+ - [#144](https://github.com/guard/guard/pull/144): Fix `guard init`. (reported by [@fabioyamate][], fixed by [@rymai][])
48
+
49
+ ## 0.8.0 - September 28, 2011
50
+
51
+ ### Bug fixes
52
+
53
+ - [#137](https://github.com/guard/guard/pull/137): Fix interacting with tools like ruby-debug. ([@hron][] & [@netzpirat][])
54
+ - [#138](https://github.com/guard/guard/pull/138): Fixed comments in example scaffold to reference interactions. ([@rmm5t][] & [@netzpirat][])
55
+
56
+ ### New feature
57
+
58
+ - [#136](https://github.com/guard/guard/pull/136): New CLI `:watch_all_modifications`/`-A` option to watch for deleted and moved files too. ([@limeyd][] & [@netzpirat][])
59
+ - [#97](https://github.com/guard/guard/issues/97): Guard dependencies. Task execution can now be halted if a Guard throws `:task_has_failed` and `Guard::Dsl#group` options include `:halt_on_fail => true`. ([@rymai][])
60
+ - [#121](https://github.com/guard/guard/issues/121): `Guard.guards` and `Guard.groups` are now smart accessors. Filters can be passed to find a specific Guard/group or several Guards/groups that match (see YARDoc). ([@rymai][] & [@ches][])
61
+ - New `Guard::Group` class to store groups defined in Guardfile (with `Guard::Dsl#group`). ([@rymai][])
62
+
63
+ ### Improvements
64
+
65
+ - Specs refactoring. ([@netzpirat][])
66
+ - Full YARD documentation. ([@netzpirat][] & a little of [@rymai][])
67
+
68
+ ## 0.7.0 - September 14, 2011
69
+
70
+ ## 0.7.0.rc1 - September 5, 2011
71
+
72
+ ### Major Changes
73
+
74
+ - Posix Signals handlers (`Ctrl-C`, `Ctrl-\` and `Ctrl-Z`) are no more supported and replaced by `$stdin.gets`. Please refer to the "Interactions" section in the README for more information. ([@thibaudgg][])
75
+ - JRuby & Rubinius support (beta). ([@thibaudgg][] & [@netzpirat][])
76
+
77
+ ### New features
78
+
79
+ - [#42](https://github.com/guard/guard/pull/42): New DSL method: `callback` allows you to execute arbitrary code before or after any of the `start`, `stop`, `reload`, `run_all` and `run_on_change` guards' method. New [Wiki page](https://github.com/guard/guard/wiki/Hooks-and-callbacks) for documenting it. ([@monocle][] & [@rymai][])
80
+ - Ability to 'pause' files modification listening. Please refer to the "Interactions" section in the README for more information. ([@thibaudgg][])
81
+
82
+ ### Improvement
83
+
84
+ - Remove the need to scan the whole directory after guard's `run_on_change` method. ([@thibaudgg][])
85
+
86
+ ## 0.6.3 - September 1, 2011
87
+
88
+ ### New features
89
+
90
+ - [#130](https://github.com/guard/guard/pull/130): Adds `ignore_paths` method to DSL. ([@ianwhite][])
91
+ - [#128](https://github.com/guard/guard/pull/128): Users can add additional settings to `~/.guard.rb` that augment the existing Guardfile. ([@tpope][])
92
+
93
+ ## 0.6.2 - August 17, 2011
94
+
95
+ ### Bug fixes
96
+
97
+ - Re-add the possibility to use the `growl` gem since the `growl_notify` gem this is currently known to not work in conjunction with Spork. ([@netzpirat][])
98
+ - Ensure that scoped groups and group name are symbolized before checking for inclusion. ([@rymai][])
99
+
100
+ ### New features
101
+
102
+ - Groups are now stored in a `@groups` variable (will be used for future features). ([@rymai][])
103
+ - Guards will now receive their group in the options hash at initialization (will be used for future features). ([@rymai][])
104
+
105
+ ### Improvement
106
+
107
+ - Explain the growl/growl_notify differences in the README. ([@netzpirat][])
108
+
109
+ ## 0.6.1 - August 15, 2011
110
+
111
+ ### Bug fixes
112
+
113
+ - [#120](https://github.com/guard/guard/pull/120): remove `guardfile_contents` when re-evaluating so that the Guardfile gets reloaded correctly. ([@mordaroso][])
114
+ - [#119](https://github.com/guard/guard/pull/119): `Dsl.evaluate_guardfile` uses all groups if none specified. ([@ches][])
115
+
116
+ ## 0.6.0 - August 13, 2011
117
+
118
+ ### Bug fixes
119
+
120
+ - Pull request [#107](https://github.com/guard/guard/pull/107): Small spelling fix. ([@dnagir][])
121
+ - `Dir.glob` now ignores files that don't need to be watched. ([@rymai][])
122
+
123
+ ### New feature
124
+
125
+ - Pull request [#112](https://github.com/guard/guard/pull/112): Add `list` command to CLI. ([@docwhat][])
126
+
127
+ ### Improvements
128
+
129
+ - [#99](https://github.com/guard/guard/pull/99): [OS X] Switch from growl gem to growl_notify gem. ([@johnbintz][])
130
+ - [#115](https://github.com/guard/guard/pull/115): [Linux] Add `:transient => true` to default libnotify options. ([@zonque][])
131
+ - [#95](https://github.com/guard/guard/pull/95): Output system commands and options to be executed when in debug mode. ([@uk-ar][] and [@netzpirat][])
132
+ - `Guard::Dsl.revaluate_guardfile` has been renamed to `Guard::Dsl.reevaluate_guardfile`. ([@rymai][])
133
+ - New CLI options: ([@nestegg][])
134
+ - `watchdir`/`-w` to specify the directory in which Guard should watch for changes,
135
+ - `guardfile`/`-G` to specify an alternate location for the Guardfile to use.
136
+ - [#90](https://github.com/guard/guard/pull/90): Refactoring of color handling in the `Guard::UI`. ([@stereobooster][])
137
+
138
+ ## 0.5.1 - July 2, 2011
139
+
140
+ ### Bug fix
141
+
142
+ - Fixed `guard show` command. ([@bronson][] & [@thibaudgg][])
143
+
144
+ ## 0.5.0 - July 2, 2011
145
+
146
+ ### New features
147
+
148
+ - Guard::Ego is now part of Guard, so Guardfile is automagically re-evaluated when modified. ([@thibaudgg][])
149
+ - [#91](https://github.com/guard/guard/pull/91): Show Guards in Guardfile with the `guard -T`. ([@johnbintz][])
150
+
151
+ ### Improvements
152
+
153
+ - [#98](https://github.com/guard/guard/issues/98): Multiple calls per watch event on linux with rb-inotify. ([@jeffutter][] & [@netzpirat][])
154
+ - [#94](https://github.com/guard/guard/pull/94): Show backtrace in terminal when a problem with a watch action occurs. ([@capotej][])
155
+ - [#88](https://github.com/guard/guard/pull/88): Write exception trace in the terminal when a supervised task fail. ([@mcmire][])
156
+ - Color in red the "ERROR:" flag when using `UI.error`. ([@rymai][])
157
+ - [#79](https://github.com/guard/guard/issues/79) and Pull request [#82](https://github.com/guard/guard/pull/82): Improve INotify support on Linux. ([@Gazer][] & [@yannlugrin][])
158
+ - [#12](https://github.com/guard/guard/issues/12) and Pull request [#86](https://github.com/guard/guard/pull/86): Eventually exits with SystemStackError. ([@stereobooster][])
159
+ - [#84](https://github.com/guard/guard/pull/84): Use RbConfig instead of obsolete and deprecated Config. ([@etehtsea][])
160
+ - [#80](https://github.com/guard/guard/pull/80): Watching dotfile (hidden files under unix). (reported by [@chrisberkhout][], fixed by [@yannlugrin][])
161
+ - Clear the terminal on start when the `:clear` option is given. ([@rymai][])
162
+ - Rename home directory Guardfile to `.Guardfile`. ([@tpope][])
163
+
164
+ ## 0.4.2 - June 7, 2011
165
+
166
+ ### Bug fixes
167
+
168
+ - Fixed Guard::Version in ruby 1.8.7 ([@thibaudgg][])
169
+ - Fix ([@mislav][]) link in CHANGELOG (Note: this is a recursive CHANGELOG item). ([@fnichol][])
170
+
171
+ ## 0.4.1 - June 7, 2011
172
+
173
+ ### Improvements
174
+
175
+ - [#77](https://github.com/guard/guard/pull/77): Refactor `get_guard_class` to first try the constant and fallback to require + various tweaks. ([@mislav][])
176
+ - Notifier improvement, don't use system notification library if could not be required. ([@yannlugrin][])
177
+
178
+ ## 0.4.0 - June 5, 2011
179
+
180
+ ### Bug fix
181
+
182
+ - In Ruby < 1.9, `Symbol#downcase` doesn't exist! ([@rymai][])
183
+
184
+ ### New features
185
+
186
+ - [#73](https://github.com/guard/guard/pull/73): Allow DSL's `group` method to accept a Symbol as group name. ([@johnbintz][])
187
+ - [#51](https://github.com/guard/guard/pull/51): Allow options (like `:priority`) to be passed through to the Notifier. ([@indirect][] & [@netzpirat][])
188
+
189
+ ### Improvement
190
+
191
+ - [#74](https://github.com/guard/guard/pull/74): Added link definitions to make the CHANGELOG more DRY! That's for sure now, we have the cleanest CHANGELOG ever! (even the link definitions are sorted alphabetically!) ([@pcreux][])
192
+
193
+ ## 0.4.0.rc - May 28, 2011
194
+
195
+ ### Bug fixes
196
+
197
+ - [#69](https://github.com/guard/guard/pull/69): Fixed typo in README: `Ctr-/` => `Ctr-\`. ([@tinogomes][])
198
+ - [#66](https://github.com/guard/guard/pull/66): Support for dashes in guard names. ([@johnbintz][])
199
+ - Require `guard/ui` because `Guard::Notifier` can be required without full Guard. ([@yannlugrin][])
200
+ - Handled quick file (<1s) modification. Avoid to catch modified files without content modification (sha1 checksum). ([@thibaudgg][] & [@netzpirat][])
201
+ - Fixed `Guard::Notifier` (when growl/libnotify not present). ([@thibaudgg][])
202
+ - Fixed Rubygems deprecation messages. ([@thibaudgg][])
203
+
204
+ ### New features
205
+
206
+ - [#67](https://github.com/guard/guard/pull/67): Allow Guardfile in `$HOME` folder. ([@hashrocketeer][])
207
+ - [#64](https://github.com/guard/guard/pull/64): Windows notifications support. ([@stereobooster][])
208
+ - [#63](https://github.com/guard/guard/pull/63): Refactor listeners to work as a library. ([@niklas][])
209
+ - Use `ENV["GUARD_NOTIFY"]` to disable notifications. ([@thibaudgg][])
210
+ - Cleaning up all specs. ([@netzpirat][])
211
+ - [#60](https://github.com/guard/guard/pull/60): Added Windows support. ([@stereobooster][])
212
+ - [#58](https://github.com/guard/guard/pull/58): Extract code from signal handlers into methods. ([@nicksieger][])
213
+ - [#55](https://github.com/guard/guard/pull/55): It is now possible to pass `:guardfile` (a Guardfile path) or `:guardfile_contents` (the content of a Guardfile) to `Guard::Dsl.evaluate_guardfile`. Hence this allows the use of `Guard::Dsl.evaluate_guardfile` in a programmatic manner. ([@anithri][], improved by [@rymai][])
214
+
215
+ ## 0.3.4 - April 24, 2011
216
+
217
+ ### Bug fix
218
+
219
+ - [#41](https://github.com/guard/guard/issues/41): Removed useless Bundler requirement. ([@thibaudgg][])
220
+
221
+ ### New features
222
+
223
+ - Changed CHANGELOG from RDOC to Markdown and cleaned it! Let's celebrate! ([@rymai][])
224
+ - Changed README from RDOC to Markdown! Let's celebrate! ([@thibaudgg][])
225
+ - [#48](https://github.com/guard/guard/issues/48): Adding support for inline Guard classes rather than requiring a gem. ([@jrsacks][])
226
+
227
+ ## 0.3.3 - April 18, 2011
228
+
229
+ ### Bug fix
230
+
231
+ - Fixed `new_modified_files` rerun conditions on `Guard.run_on_change_for_all_guards`. ([@thibaudgg][])
232
+
233
+ ## 0.3.2 - April 17, 2011
234
+
235
+ ### Bug fixe
236
+
237
+ - [#43](https://github.com/guard/guard/pull/43): Fixed `guard init` command. ([@brainopia][])
238
+
239
+ ## 0.3.1 - April 14, 2011
240
+
241
+ ### Bug fixes
242
+
243
+ - Return unique filenames from Linux listener. (Marian Schubert)
244
+ - `Guard.get_guard_class` return wrong class when loaded nested class. ([@koshigoe][])
245
+ - [#35](https://github.com/guard/guard/issues/35): Fixed open-gem/gem_open dependency problem by using `gem which` to locate guards gem path. (reported by [@thierryhenrio][], fixed by [@thibaudgg][])
246
+ - [#38](https://github.com/guard/guard/issues/38) & Pull request [#39](https://github.com/guard/guard/issues/39): Fixed an invalid ANSI escape code in `Guard::UI.reset_line`. ([@gix][])
247
+
248
+ ### New feature
249
+
250
+ - [#28](https://github.com/guard/guard/issues/28): New `-n` command line option to disable notifications (Growl / Libnotify). ([@thibaudgg][])
251
+
252
+ ## 0.3.0 - January 19, 2011
253
+
254
+ ### Bug fix
255
+
256
+ - Avoid launching `run_on_change` guards method when no files matched. `--clear` guard argument is now usable. ([@thibaudgg][])
257
+
258
+ ### New features
259
+
260
+ - The whole directory is now watched during `run_on_change` to detect new files modifications. ([@thibaudgg][])
261
+ - [#26](https://github.com/guard/guard/pull/26): New DSL method: `group` allows you to group several guards. New CLI option: `--group group_name` to specify certain groups of guards to start. ([@netzpirat][])
262
+ - `watch` patterns are now more strict: strings are matched with `String#==`, `Regexp` are matched with `Regexp#match`. ([@rymai][])
263
+ - A deprecation warning is displayed if your `Guardfile` contains `String` that look like `Regexp` (bad!). ([@rymai][])
264
+ - It's now possible to return an `Enumerable` in the `watch` optional blocks in the `Guardfile`. ([@rymai][])
265
+
266
+ ### New specs
267
+
268
+ - `Guard::Watcher`. ([@rymai][])
269
+ - [#13](https://github.com/guard/guard/pull/13): `Guard::Dsl`. ([@oliamb][])
270
+
271
+ ## 0.2.2 - October 25, 2010
272
+
273
+ ### Bug fix
274
+
275
+ - [#5](https://github.com/guard/guard/issues/5): avoid creating new copy of `fsevent_watch` every time a file is changed. (reported by [@stouset][], fixed by [@thibaudgg][])
276
+
277
+ ## 0.2.1 - October 24, 2010
278
+
279
+ ### Bug fixes
280
+
281
+ - [#7](https://github.com/guard/guard/pull/7): Fixes for Linux support. ([@yannlugrin][])
282
+ - [#6](https://github.com/guard/guard/pull/6): Locate guard now chomp newline in result path. ([@yannlugrin][])
283
+
284
+ ## 0.2.0 - October 21, 2010
285
+
286
+ ### Bug fixes
287
+
288
+ - [#3](https://github.com/guard/guard/issues/3): `guard init <guard-name>` no more need `Gemfile` but `open_gem` is required now. (reported by [@wereHamster][], fixed by [@thibaudgg][])
289
+ - [#2](https://github.com/guard/guard/issues/2): 1.8.6 compatibility. (reported by [@veged][], fixed by [@thibaudgg][])
290
+ - Removes Growl & Libnotify dependencies. ([@thibaudgg][])
291
+
292
+ ## 0.2.0.beta.1 - October 17, 2010
293
+
294
+ ### New features
295
+
296
+ - Improved listeners support (`rb-fsevent` & `rb-inotify`). ([@thibaudgg][])
297
+ - Added polling listening fallback. ([@thibaudgg][])
298
+
299
+ [@anithri]: https://github.com/anithri
300
+ [@brainopia]: https://github.com/brainopia
301
+ [@bronson]: https://github.com/bronson
302
+ [@capotej]: https://github.com/capotej
303
+ [@ches]: https://github.com/ches
304
+ [@chrisberkhout]: https://github.com/chrisberkhout
305
+ [@dnagir]: https://github.com/dnagir
306
+ [@docwhat]: https://github.com/docwhat
307
+ [@earlonrails]: https://github.com/earlonrails
308
+ [@etehtsea]: https://github.com/etehtsea
309
+ [@f1sherman]: https://github.com/f1sherman
310
+ [@fabioyamate]: https://github.com/fabioyamate
311
+ [@fnichol]: https://github.com/fnichol
312
+ [@Gazer]: https://github.com/Gazer
313
+ [@gix]: https://github.com/gix
314
+ [@hron]: https://github.com/hron
315
+ [@hardipe]: https://github.com/hardipe
316
+ [@hashrocketeer]: https://github.com/hashrocketeer
317
+ [@ianwhite]: https://github.com/ianwhite
318
+ [@indirect]: https://github.com/indirect
319
+ [@jeffutter]: https://github.com/jeffutter
320
+ [@johnbintz]: https://github.com/johnbintz
321
+ [@jrsacks]: https://github.com/jrsacks
322
+ [@koshigoe]: https://github.com/koshigoe
323
+ [@limeyd]: https://github.com/limeyd
324
+ [@mcmire]: https://github.com/mcmire
325
+ [@mislav]: https://github.com/mislav
326
+ [@monocle]: https://github.com/monocle
327
+ [@mordaroso]: https://github.com/mordaroso
328
+ [@nestegg]: https://github.com/nestegg
329
+ [@netzpirat]: https://github.com/netzpirat
330
+ [@nicksieger]: https://github.com/nicksieger
331
+ [@niklas]: https://github.com/niklas
332
+ [@oliamb]: https://github.com/oliamb
333
+ [@pcreux]: https://github.com/pcreux
334
+ [@rmm5t]: https://github.com/rmm5t
335
+ [@rymai]: https://github.com/rymai
336
+ [@scottdavis]: https://github.com/scottdavis
337
+ [@stereobooster]: https://github.com/stereobooster
338
+ [@stouset]: https://github.com/stouset
339
+ [@sunaku]: https://github.com/sunaku
340
+ [@thibaudgg]: https://github.com/thibaudgg
341
+ [@thierryhenrio]: https://github.com/thierryhenrio
342
+ [@tinogomes]: https://github.com/tinogomes
343
+ [@tpope]: https://github.com/tpope
344
+ [@uk-ar]: https://github.com/uk-ar
345
+ [@veged]: https://github.com/veged
346
+ [@wereHamster]: https://github.com/wereHamster
347
+ [@yannlugrin]: https://github.com/yannlugrin
348
+ [@zonque]: https://github.com/zonque