guard 0.8.0 → 0.8.1

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