guard 0.7.0.rc1 → 0.7.0

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