guard 0.8.1 → 0.8.2

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