guard 2.0.0.pre → 2.0.0.pre.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec53a40ba0d6bb529aba462d295f5959631fc2de
4
- data.tar.gz: 730479188a61cfdafea27ee0ed417ef72ef09fc2
3
+ metadata.gz: 1709251bb5d838ee4ba64f96f0ebf53ffb0db45e
4
+ data.tar.gz: e3fd375d5c4edcc27e6fb8b6f7f621b92a0bb391
5
5
  SHA512:
6
- metadata.gz: b98bfa844663944ed92554b69af8edb2f8cc1f63de2d7d0ef374c828414ceb5ebbd7fb5f07b7ecb904f52c86522ac721c973062e331c5677dfa47da8572faae3
7
- data.tar.gz: f9d2785f7edf80c6e81fac7d05f87dfb732442e9bf38b27ba3e8a2decbb2f5f3817f0e1c5d9411c5508bd61f8710ed7bebec31b0b465ef9df8b24c2daef1a4df
6
+ metadata.gz: 4221c9dc78e4340460d672762382978dc500672d29e48e12cfb307f49255e6ddbfd747f874433e7b520ab59c01d0066222dd8f0dd6b31bf8d782f9d75444e38b
7
+ data.tar.gz: a96d8688bcd5bad8058cbc38f4173eeb62d118d428ddd55ed9a7f7e90aeeeacb4fdbe066ca725b6bb0ecd5ea67b3b4f5dd9017d5658990349b01a5984328b466
@@ -1,945 +1 @@
1
- ## Master
2
-
3
- No changes.
4
-
5
- ## 2.0.0.pre - 12 September, 2013
6
-
7
- ### Removals & deprecations
8
-
9
- - Remove `Guard::Guardfile.duplicate_definitions?`. ([@rymai][])
10
- - Remove the deprecated `watch_all_modifications` start option. ([@rymai][])
11
- - Remove the deprecated `no_vendor` start option. ([@rymai][])
12
- - Remove the deprecated `reset_color` UI method. ([@rymai][])
13
- - Remove the deprecated `match_file?` Watcher method. ([@rymai][])
14
- - Remove the deprecated `ignore_paths` DSL method. ([@rymai][])
15
- - Remove the deprecation warning for the `interactor` DSL method. ([@rymai][])
16
- - Remove the deprecation warning for when a plugin defines the `run_on_change` method. ([@rymai][])
17
- - Remove the deprecation warning for when a plugin defines the `run_on_deletion` method. ([@rymai][])
18
- - Deprecate `Guard.guards(filter)` in favor of `Guard.plugins(filter)`. ([@rymai][])
19
- - Deprecate `Guard.add_guard(name, options = {})` in favor of `Guard.add_plugin(name, options = {})`. ([@rymai][])
20
- - Deprecate `Guard.get_guard_class(name, fail_gracefully)` in favor of `Guard::PluginUtil.new(name).plugin_class(fail_gracefully: fail_gracefully)`. ([@rymai][])
21
- - Deprecate `Guard.locate_guard(name)` in favor of `Guard::PluginUtil.new(name).plugin_location`. ([@rymai][])
22
- - Deprecate `Guard.guard_gem_names` in favor of `Guard::PluginUtil.plugin_names`. ([@rymai][])
23
- - Deprecate `Guard::Guard` in favor of `Guard::Plugin`. ([@rymai][])
24
- - Deprecate `Guard::Dsl.evaluate_guardfile(options)` in favor of `Guard::Guardfile::Evaluator.new(options).evaluate_guardfile`. ([@rymai][])
25
- - Deprecate `Guard::Guardfile.create_guardfile(options)` in favor of `Guard::Guardfile::Generator.new(options).create_guardfile`. ([@rymai][])
26
- - Deprecate `Guard::Guardfile.initialize_template(plugin_name)` in favor of `Guard::Guardfile::Generator.new.initialize_template(plugin_name)`. ([@rymai][])
27
- - Deprecate `Guard::Guardfile.initialize_all_templates` in favor of `Guard::Guardfile::Generator.new.initialize_all_templates`. ([@rymai][])
28
-
29
- ### New features & improvements
30
-
31
- - [#469][] List available notifiers. ([@netzpirat][])
32
- - Refactor `Guard::Notifier` and the whole notifiers system. ([@rymai][])
33
- - Allow to pass symbols or actual Guard plugins / groups for the `scope` parameter to `Guard::Runner#run`. ([@rymai][])
34
- - Ensure Guard API calls are not order dependent. ([@rymai][])
35
- - Ensure Guard has sensible defaults. ([@rymai][])
36
- - New `#title` method for `Guard::Group` & `Guard::Plugin`. ([@rymai][])
37
- - New `Guard::Plugin::Base` module common to `Guard::Guard` (deprecated) & `Guard::Plugin`. ([@rymai][])
38
- - New `Guard::PluginUtil` that contains useful methods to find and instantiate Guard plugins. ([@rymai][])
39
- - New `Guard.plugin` method to find the first plugin matching a filter. ([@rymai][])
40
- - New `Guard.group` method to find the first group matching a filter. ([@rymai][])
41
- - Don't swallow exceptions when evaluating the Guardfile. ([@rymai][])
42
- - Rename `Guard::Hook` to `Guard::Plugin::Hooker`. ([@rymai][])
43
- - Move setup stuff into a new `Guard::Setuper` module. ([@rymai][])
44
- - Move deprecation stuff inside a new `Guard::Deprecator` class. ([@rymai][])
45
-
46
- ### Bug fixes
47
-
48
- - [#472][] Clear terminal title notification on exit. Fixes [#472][]. ([@netzpirat][])
49
- - [#457][] Raise an exception when a group is called "all". Fixes [#457][]. (reported by [@rweng][], fixed by [@rymai][])
50
- - [#471][] Only init once per plugin when running `guard init` (reported by [@simon-ohara][], fixed by [@thibaudgg][])
51
- - [#456][] Fix notifu notifier. ([@netzpirat][])
52
- - [#435][] Fix pressing `C-c` when interactor thread is not started. ([@netzpirat][])
53
-
54
- ## 1.8.2 - 30 July, 2013
55
-
56
- ### Bug fix
57
-
58
- - [#443][] Escape `notify-send` arguments. ([@netzpirat][])
59
-
60
- ### Improvements
61
-
62
- - [#460][], [#463][] Better Windows support. ([@cablegram][])
63
- - [#450][] Allow multiple watch directories. ([@timmfin][])
64
-
65
- ## 1.8.1 - 17 June, 2013
66
-
67
- ### Bug fixes
68
-
69
- - [#453][] Fix a Guard error when calling `guard show` or `guard list` and
70
- the Guardfile contains methods called directly on the listener. ([@rymai][])
71
- - [#443][] Escape `notify-send` arguments. ([@netzpirat][])
72
-
73
- ## 1.8.0 - 20 April, 2013
74
-
75
- ### Improvements
76
-
77
- - Listen 1.0.0 support. ([@thibaudgg][])
78
- - [#416][] Support .guardrc file on the folder from which Guard is executed as well. ([@Nerian][])
79
- - Display an info message when a plugin throws `:task_has_failed`. ([@rymai][])
80
- - Ensure compatibility with new Listen's API. ([@rymai][])
81
-
82
- ### Bug fixes
83
-
84
- - [#413][], [#414][] NoMethodError exceptions raised by plugins are no longer silently discarded. ([@aspiers][])
85
- - [#414][] Test suite now runs cleanly within a `tmux` session. ([@aspiers][])
86
- - Specs and Travis builds no longer require `guard-rspec`. ([@aspiers][], [@rymai][])
87
- - [#414][] Various minor issues with the test suite were fixed. ([@aspiers][])
88
- - [#409][], [#410][] Fix some typos and broken URLs. ([@aspiers][], [@rymai][])
89
-
90
- ### Process changes
91
-
92
- - Guard has an open commit bit policy: Anyone with an accepted pull
93
- request gets added as a repository collaborator. ([@netzpirat][])
94
-
95
- ## 1.7.0 - 28 March, 2013
96
-
97
- ### Improvements
98
-
99
- - [#407][], [#408][] Add file notifier to write notifications to a configured file. ([@amiel][])
100
- - Change the current work dir to the `watchdir`. ([@netzpirat][])
101
- - [#400][] Drop dependency on `terminal-table` and use `formatador` instead. ([@netzpirat][])
102
-
103
- ### Bug fixes
104
-
105
- - [#406][] Avoid spurious 'nil' output from emacs notifier. ([@aspiers][])
106
- - [#402][] Make stty less noisy under JRuby. ([@pritchie][])
107
- - [#401][] Fix Pry `history_file` file expansion. ([@martoche][])
108
-
109
- ## 1.6.2 - 27 January, 2013
110
-
111
- ### Improvements
112
-
113
- - Allow the logger device to be set with the `:device` option. ([@netzpirat][])
114
- - Improve `list` and `show` command output. ([@netzpirat][])
115
- - [#386][] Replace Pry's reset command. ([@envygeeks][])
116
-
117
- ### Bug fixes
118
-
119
- - [#389][] Fix `list` and `show` commands. ([@netzpirat][])
120
- - [#387][] Load the users defined guardrc file. ([@envygeeks][])
121
-
122
- ## 1.6.1 - 27 December, 2012
123
-
124
- ### Improvements
125
-
126
- - [#344][] Restore Pry visibility after each evaluation. (reported by [@rking][], fixed by [@netzpirat][])
127
-
128
- ## 1.6.0 - 21 December, 2012
129
-
130
- ### New features
131
-
132
- - Allow the Guard scope to be defined from the `Guardfile` with the `scope` Dsl method. ([@netzpirat][])
133
- - [#378][] Scope plugins and groups from CLI and interactor. ([@netzpirat][])
134
- - [#369][] Allow Guard plugins to specify their template location. ([@schmurfy][])
135
- - [#364][] Add `ignore!` and `filter!` Dsl methods. ([@tarsolya][])
136
- - [#362][] Add interactor options `:history_file` and `:guard_rc`. ([@netzpirat][])
137
-
138
- ### Improvements
139
-
140
- - [#372][] Restore original TMux settings on stop. ([@rudicode][])
141
- - [#376][] Delegate Ctrl-C to Pry to exit continuation. ([@netzpirat][])
142
- - [#360][] Improve Guard/listen/interactor thread coordination. ([@netzpirat][])
143
- - [#368][] Detecting duplicate definitions and then warning the user. ([@jfolkins][])
144
- - [#367][] Change modeline's fgcolor when changing bgcolor in emacs notifier. ([@iljoo][])
145
-
146
- ### Bug fixes
147
-
148
- - [#377][] Add the 'a' alias for the 'all' Pry command. (reported by [@cknadler][], fixed by [@rymai][])
149
- - [#365][] Fix terminal reset redirect to null devise on Windows. ([@cablegram][])
150
- - [#365][] Fix Emacs notifier detection on Windows. ([@cablegram][])
151
- - [#361][] Tmux notifier affects only the local session. ([@netzpirat][])
152
-
153
- ## 1.5.4 - 9 November, 2012
154
-
155
- ### Improvements
156
-
157
- - Thread handling improved and added thread debug mode. ([@netzpirat][])
158
-
159
- ### Bug fix
160
-
161
- - [#358][] Ignore `~/.pryrc` since it breaks Guard when loading the Rails env. ([@netzpirat][])
162
-
163
- ## 1.5.3 - 31 October, 2012
164
-
165
- ### Bug fixes
166
-
167
- - [#352][] Guard always reloading twice. ([@netzpirat][])
168
- - [#354][] Ignore `./.pryrc` since it breaks Guard when loading the Rails env. ([@netzpirat][])
169
-
170
- ## 1.5.2 - 29 October, 2012
171
-
172
- ### Bug fix
173
-
174
- - [#353][] Do not modify original message in terminal_title notifier. ([@tomas-zemres][])
175
-
176
- ## 1.5.1 - 28 October, 2012
177
-
178
- ### Bug fix
179
-
180
- - [#351][] Fix turning off the interactor from the Guardfile. ([@netzpirat][])
181
-
182
- ## 1.5.0 - 22 October, 2012
183
-
184
- ### New features
185
-
186
- - [#327][] Use Pry as interactor. ([@netzpirat][])
187
- - [#345][] Use Lumberjack as customizable logger. ([@netzpirat][])
188
- - [#342][] Add notifier for displaying result in terminal title. ([@tomas-zemres][])
189
- - [#348][] Introduce grouping of the notifiers for better auto-detection. ([@netzpirat][])
190
-
191
- ### Improvements
192
-
193
- - [#348][] Introduce grouping of the notifiers. ([@netzpirat][])
194
- - [#343][] Customize tmux notifier status location. ([@nickmabry][])
195
- - Adds ability to override default options in emacs notifier. ([@d1][])
196
- - Use `$stderr` instead of `STDERR` to allow redirection. ([@netzpirat][])
197
- - [#334][] Extend `:tmux` notifier with use of `tmux display-message` and options to configure them. ([@matthijsgroen][])
198
-
199
- ## 1.4.0 - 26 September, 2012
200
-
201
- - [#331][] Add tmux notifier. ([@royvandewater][])
202
-
203
- ## 1.3.3 - 20 September, 2012
204
-
205
- - Add Guard application icon to GNTP notifier. ([@netzpirat][])
206
- - [#324][] Allow Terminal Notifier title to be customizable. ([@mattgreen][])
207
-
208
- ## 1.3.2 - 15 August, 2012
209
-
210
- ### Improvements
211
-
212
- - [#316][] Guard clears screen more than once per single watch event. (reported by [@japgolly][], fixed by [@thibaudgg][])
213
-
214
- ## 1.3.1 - 14 August, 2012
215
-
216
- ### Improvements
217
-
218
- - [#317][] Switch to Terminal-Notifier-Guard gem. ([@foxycoder][])
219
- - [#315][] Improve Emacs detection. ([@maio][])
220
-
221
- ## 1.3.0 - 3 August, 2012
222
-
223
- ### Bug fix
224
-
225
- - [#299][] Fix Readline interactor on JRruby. ([@netzpirat][])
226
-
227
- ### Improvements
228
-
229
- - Add support for OS X notification center ([@foxycoder][])
230
- - Add support for Emacs notifications ([@maio][])
231
- - Add support for multiple guards being passed to `guard init`. ([@jredville][])
232
-
233
- ### 1.2.1 - 2 July, 2012
234
-
235
- ### Bug fix
236
-
237
- - Fix template methods in the Guard plugin class that causes loss of listen changes. ([@netzpirat][])
238
-
239
- ### 1.2.2 - 2 July, 2012
240
-
241
- ### Bug fix
242
-
243
- - [#298][] Deprecations must be explicit enabled. ([@netzpirat][])
244
-
245
- ### 1.2.1 - 20 June, 2012
246
-
247
- ### Bug fix
248
-
249
- - Work around a Listen issue where the stop task isn't executed. ([@netzpirat][])
250
-
251
- ### 1.2.0 - 20 June, 2012
252
-
253
- ### Improvements
254
-
255
- - Add a [Coolline](https://github.com/Mon-Ouie/coolline) based interactor (Ruby 1.9.3 only). ([@netzpirat][])
256
- - More flexible command parser for all interactors. ([@netzpirat][])
257
- - Add 'show' command to describe all plugins in the interactor. ([@netzpirat][])
258
- - Add 'change' command to trigger a file change event in the interactor. ([@netzpirat][])
259
-
260
- ## 1.1.1 - 3 June, 2012
261
-
262
- ### Bug fix
263
-
264
- - [#283][] Fix `guard init`. (reported by [@ashleyconnor][], fixed by [@rymai][])
265
-
266
- ## 1.1.0 - 2 June, 2012
267
-
268
- ### Improvements
269
-
270
- - Listening is now handled by the [Listen gem](https://github.com/guard/listen).
271
- - Replace the `--verbose` option with the `--debug` option.
272
- - New `--latency`/`-l` option to overwrite Listen's default latency.
273
- - New `--force-polling`/`-p` option to force usage of the Listen polling listener.
274
- - `--watch-all-modifications`/`-A` option is removed and is now always on.
275
- - `--no-vendor`/`-I` option is removed because the monitoring gems are now part of the [Listen gem](https://github.com/guard/listen). You can specify a custom version of any monitoring gem directly in your Gemfile if you want to overwrite Listen's default monitoring gems.
276
- - Guard plugins must now implement `run_on_additions`, `run_on_modifications`, `run_on_removals` and / or `run_on_changes`. The `run_on_change` and `run_on_deletion` methods are deprecated and should be removed as soon as possible. See the [Upgrade guide for existing guards to Guard v1.1](https://github.com/guard/guard/wiki/Upgrade-guide-for-existing-guards-to-Guard-v1.1) for more info.
277
-
278
- The Listen integration has been supervised by [@thibaudgg][] and executed by [@Maher4Ever][], [@rymai][] and [@thibaudgg][].
279
-
280
- ## 1.0.3 - 14 May, 2012
281
-
282
- ### Improvement
283
-
284
- - Improve Thor dependency '~> 0.14.6' => '>= 0.14.6'. ([@thibaudgg][])
285
-
286
- ## 1.0.2 - 30 April, 2012
287
-
288
- ### Improvements
289
-
290
- - [#274][] and [#275][] Make the Bundler warning less scary and more friendly. ([@mcmire][])
291
- - [#270][] Make urgency configurable for libnotify/notifysend. ([@viking][])
292
- - [#254][] Add the possibility to pause/unpause by sending OS signal. ([@steakknife][])
293
- - [#261][] Clarify the usage of the term `guard-name` in the README. ([@spadin][])
294
- - Add a `--no-bundler-warning` option to Guard start. ([@netzpirat][])
295
- - Update vendor/darwin. ([@thibaudgg][])
296
-
297
- ### Bug fixes
298
-
299
- - [#260][] Don't show Bundler warning when no Gemfile present. ([@netzpirat][])
300
- - [#259][] Fix `guard show` on Ruby 1.8.7. ([@netzpirat][] and [@rymai][])
301
-
302
- ## 1.0.1 - 7 March, 2012
303
-
304
- ### Improvements
305
-
306
- - [#236][] Add support for `notifysend`. ([@alandipert][])
307
- - Update vendor/darwin to rb-fsevent 0.9.0. ([@thibaudgg][])
308
-
309
- ### Bug fixes
310
-
311
- - [#249][] and [#250][] Fix programmatic examples that didn't work. ([@oreoshake][])
312
- - [#238][] Don't try to load the FSEvents listener on older versions of OSX. ([@philomory][])
313
- - [#233][] `Guard::Listener.select_and_init` requires a hash. (reported by [@sunaku][], fixed by [@thibaudgg][])
314
- - [#227][] and [#232][] Add the ability to initialize all guards at once. (proposed by [@rupert654][], done by [@Maher4Ever][])
315
-
316
- ## 1.0.0 - 19 January, 2012
317
-
318
- ### Improvements
319
-
320
- - Add Gemnasium dependency status image to README. ([@laserlemon][])
321
- - Update vendor/darwin. ([@thibaudgg][])
322
- - [#223][] Warn if Guard isn't launched with `bundle exec`. (proposed by [@thibaudgg][], done by [@netzpirat][])
323
-
324
- ### Bug fixes
325
-
326
- - [#226][] Use a direct file descriptor with stty. ([@netzpirat][])
327
- - [#218][] Watching directory with `-A` option only reports a deleted file the first time around. ([@rymai][])
328
- - [#174][] Not creating timestamps for new files with `-A` option. ([@rymai][])
329
- - [#216][] Fix exit-status codes for Guard. ([@Maher4Ever][])
330
- - [#213][] and [#214][] Fix the "ERROR: No guards found in Guardfile" message wrongly displayed when running `guard list`. ([@pirukire][])
331
-
332
- ## 0.10.0 - 1 January, 2012
333
-
334
- ### Improvements
335
-
336
- - Improve Readline constraints. ([@netzpirat][])
337
- - Stop and start all guards on Guardfile reevaluation. ([@thibaudgg][])
338
-
339
- ### Bug fix
340
-
341
- - Terminal keep-alive causing ERROR: Unknown command. ([@waldo][])
342
-
343
- ## 0.9.4 - December 25, 2011
344
-
345
- ### Improvement
346
-
347
- - Add the ability to load user defined templates. ([@hawx][])
348
-
349
- ### Bug fix
350
-
351
- - Fix guard-rspec notifications by using ENV variable to store Notifier.notifications. ([@thibaudgg][])
352
-
353
- ## 0.9.3 - December 23, 2011
354
-
355
- ### Improvement
356
-
357
- - Fix terminal status after interrupting the Readline interactor. ([@Maher4Ever][])
358
-
359
- ## 0.9.2 - December 22, 2011
360
-
361
- ### Improvements
362
-
363
- - Add `interactor` to Dsl to allow switching Guard interaction implementation. ([@netzpirat][])
364
- - Add quit action to the interactor. ([@Maher4Ever][])
365
-
366
- ## 0.9.1 - December 19, 2011
367
-
368
- ### Bug fixes
369
-
370
- - Fix wrong `--no-vendor` option. ([@netzpirat][])
371
- - [#195][] Empty watch directory prohibit Guard from running. (reported by [@madtrick][], fixed by [@netzpirat][])
372
-
373
- ## 0.9.0 - December 19, 2011
374
-
375
- ### Bug fixes
376
-
377
- - [#173][] Cannot set the watch_all_modifications option. (reported by [@sutherland][], fixed by [@netzpirat][])
378
- - Fix `guard init` when a guard name is given. ([@rymai][])
379
-
380
- ### Improvements
381
-
382
- - [#165][] Allow underscores in Guard name. ([@benolee][])
383
- - Add readline support to the interactor. ([@netzpirat][])
384
- - Add support for notification configuration. ([@netzpirat][])
385
-
386
- ## 0.8.8 - October 21, 2011
387
-
388
- ### Bug fix
389
-
390
- - Fix `guard init` when a guard name is given. ([@rymai][])
391
-
392
- ## 0.8.7 - October 18, 2011
393
-
394
- ### Bug fix
395
-
396
- - [#166][] Fix silent failure after re-evaluating Guardfile. (reported by [@dgutov][], fixed by [@rymai][], special thanks to [@dyfrgi][] for the [reproducible test case](https://github.com/dyfrgi/Guard-Broken))
397
-
398
- ## 0.8.6 - October 17, 2011
399
-
400
- ### Bug fixes
401
-
402
- - [#168][] Fix `guard init` path to Guardfile template. (reported by [@semperos][])
403
- - [#167][] Include objects in changed_paths when Guard allows any return from the watchers. (reported by [@earlonrails][], fixed by [@netzpirat][])
404
-
405
- ## 0.8.5 - October 17, 2011
406
-
407
- ### Improvements
408
-
409
- - `reload` and `run_all` Guard terminal interactions actions can be scoped to only run on a certain guard or group. ([@thibaudgg][])
410
- - Add cli option (`-i` / `--no-interactions`) to turn off Guard terminal interactions. ([@thibaudgg][])
411
- - Add support for Growl Notification Transport Protocol. ([@netzpirat][])
412
- - [#157][] Allow any return from the Guard watchers. ([@earlonrails][])
413
- - [#156][] Log error and diagnostic messages to STDERR. ([@sunaku][])
414
- - [#152][] Growl Notify API update for a graceful fail. ([@scottdavis][])
415
-
416
- ### Bug fix
417
-
418
- - [#160][] Avoid `Guard is not missing constant ...` exceptions. (reported by [@earlonrails][], fixed by [@netzpirat][])
419
-
420
- ## 0.8.4 - October 3, 2011
421
-
422
- ### Bug fix
423
-
424
- - [#149][] and [#150][] Fix issue where interactor thread was continuing to capture input from `stdin` while a guard is being executed. (reported by [@hardipe][], fixed by [@f1sherman][])
425
-
426
- ## 0.8.3 - October 1, 2011
427
-
428
- ### Bug fix
429
-
430
- - [#145][] Fix over-utilization of CPU in Interactor. ([@johnbintz][])
431
-
432
- ### Improvements
433
-
434
- - [#146][] Use a mutex instead of a lock for more efficient/simple locking. ([@f1sherman][])
435
- - Make Guard implementation of `:task_has_failed` simple. ([@netzpirat][])
436
-
437
- ## 0.8.2 - September 30, 2011
438
-
439
- ### Bug fix
440
-
441
- - Fix guard stop to prevent `run_guard_task(:stop)` from being skipped [guard-spork issue 28](https://github.com/guard/guard-spork/issues/28). ([@thibaudgg][])
442
-
443
- ### Improvement
444
-
445
- - Update docs regarding `:task_has_failed`. ([@netzpirat][])
446
-
447
- ## 0.8.1 - September 29, 2011
448
-
449
- ### Bug fix
450
-
451
- - [#144][] Fix `guard init`. (reported by [@fabioyamate][], fixed by [@rymai][])
452
-
453
- ## 0.8.0 - September 28, 2011
454
-
455
- ### Bug fixes
456
-
457
- - [#137][] Fix interacting with tools like ruby-debug. ([@hron][] and [@netzpirat][])
458
- - [#138][] Fix comments in example scaffold to reference interactions. ([@rmm5t][] and [@netzpirat][])
459
-
460
- ### New feature
461
-
462
- - [#136][] New CLI `:watch_all_modifications`/`-A` option to watch for deleted and moved files too. ([@limeyd][] and [@netzpirat][])
463
- - [#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][])
464
- - [#121][] `Guard.guards` and `Guard.groups` are now smart accessors. Filters can be passed to find a specific Guard/group or several Guard plugins/groups that match (see YARDoc). ([@rymai][] and [@ches][])
465
- - New `Guard::Group` class to store groups defined in Guardfile (with `Guard::Dsl#group`). ([@rymai][])
466
-
467
- ### Improvements
468
-
469
- - Specs refactoring. ([@netzpirat][])
470
- - Full YARD documentation. ([@netzpirat][] and a little of [@rymai][])
471
-
472
- ## 0.7.0 - September 14, 2011
473
-
474
- ## 0.7.0.rc1 - September 5, 2011
475
-
476
- ### Major Changes
477
-
478
- - 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][])
479
- - JRuby and Rubinius support (beta). ([@thibaudgg][] and [@netzpirat][])
480
-
481
- ### New features
482
-
483
- - [#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][] and [@rymai][])
484
- - Ability to 'pause' files modification listening. Please refer to the "Interactions" section in the README for more information. ([@thibaudgg][])
485
-
486
- ### Improvement
487
-
488
- - Remove the need to scan the whole directory after guard's `run_on_change` method. ([@thibaudgg][])
489
-
490
- ## 0.6.3 - September 1, 2011
491
-
492
- ### New features
493
-
494
- - [#130][] Add `ignore_paths` method to Dsl. ([@ianwhite][])
495
- - [#128][] Users can add additional settings to `~/.guard.rb` that augment the existing Guardfile. ([@tpope][])
496
-
497
- ## 0.6.2 - August 17, 2011
498
-
499
- ### Bug fixes
500
-
501
- - 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][])
502
- - Ensure that scoped groups and group name are symbolized before checking for inclusion. ([@rymai][])
503
-
504
- ### New features
505
-
506
- - Groups are now stored in a `groups` instance variable (will be used for future features). ([@rymai][])
507
- - Guard plugins will now receive their group in the options hash at initialization (will be used for future features). ([@rymai][])
508
-
509
- ### Improvement
510
-
511
- - Explain the growl/growl_notify differences in the README. ([@netzpirat][])
512
-
513
- ## 0.6.1 - August 15, 2011
514
-
515
- ### Bug fixes
516
-
517
- - [#120][] Remove `guardfile_contents` when re-evaluating so that the Guardfile gets reloaded correctly. ([@mordaroso][])
518
- - [#119][] `Dsl.evaluate_guardfile` uses all groups if none specified. ([@ches][])
519
-
520
- ## 0.6.0 - August 13, 2011
521
-
522
- ### Bug fixes
523
-
524
- - [#107][] Small spelling fix. ([@dnagir][])
525
- - `Dir.glob` now ignores files that don't need to be watched. ([@rymai][])
526
-
527
- ### New feature
528
-
529
- - [#112][] Add `list` command to CLI. ([@docwhat][])
530
-
531
- ### Improvements
532
-
533
- - [#99][] [OS X] Switch from growl gem to growl_notify gem. ([@johnbintz][])
534
- - [#115][] [Linux] Add `transient: true` to default libnotify options. ([@zonque][])
535
- - [#95][] Output system commands and options to be executed when in debug mode. ([@uk-ar][] and [@netzpirat][])
536
- - `Guard::Dsl.revaluate_guardfile` has been renamed to `Guard::Dsl.reevaluate_guardfile`. ([@rymai][])
537
- - New CLI options: ([@nestegg][])
538
- - `watchdir`/`-w` to specify the directory in which Guard should watch for changes,
539
- - `guardfile`/`-G` to specify an alternate location for the Guardfile to use.
540
- - [#90][] Refactoring of color handling in the `Guard::UI`. ([@stereobooster][])
541
-
542
- ## 0.5.1 - July 2, 2011
543
-
544
- ### Bug fix
545
-
546
- - Fix `guard show` command. ([@bronson][] and [@thibaudgg][])
547
-
548
- ## 0.5.0 - July 2, 2011
549
-
550
- ### New features
551
-
552
- - Guard::Ego is now part of Guard, so Guardfile is automagically re-evaluated when modified. ([@thibaudgg][])
553
- - [#91][] Show Guard plugins in Guardfile with the `guard -T`. ([@johnbintz][])
554
-
555
- ### Improvements
556
-
557
- - [#98][] Multiple calls per watch event on linux with rb-inotify. ([@jeffutter][] and [@netzpirat][])
558
- - [#94][] Show backtrace in terminal when a problem with a watch action occurs. ([@capotej][])
559
- - [#88][] Write exception trace in the terminal when a supervised task fail. ([@mcmire][])
560
- - Color in red the "ERROR:" flag when using `UI.error`. ([@rymai][])
561
- - [#79][] and [#82][] Improve INotify support on Linux. ([@Gazer][] and [@yannlugrin][])
562
- - [#12][] and [#86][] Eventually exits with SystemStackError. ([@stereobooster][])
563
- - [#84][] Use RbConfig instead of obsolete and deprecated Config. ([@etehtsea][])
564
- - [#80][] Watching dotfile (hidden files under unix). (reported by [@chrisberkhout][], fixed by [@yannlugrin][])
565
- - Clear the terminal on start when the `:clear` option is given. ([@rymai][])
566
- - Rename home directory Guardfile to `.Guardfile`. ([@tpope][])
567
-
568
- ## 0.4.2 - June 7, 2011
569
-
570
- ### Bug fixes
571
-
572
- - Fix Guard::Version in ruby 1.8.7 ([@thibaudgg][])
573
- - Fix ([@mislav][]) link in the CHANGELOG (Note: this is a recursive CHANGELOG item). ([@fnichol][])
574
-
575
- ## 0.4.1 - June 7, 2011
576
-
577
- ### Improvements
578
-
579
- - [#77][] Refactor `get_guard_class` to first try the constant and fallback to require + various tweaks. ([@mislav][])
580
- - Notifier improvement, don't use system notification library if could not be required. ([@yannlugrin][])
581
-
582
- ## 0.4.0 - June 5, 2011
583
-
584
- ### Bug fix
585
-
586
- - In Ruby < 1.9, `Symbol#downcase` doesn't exist! ([@rymai][])
587
-
588
- ### New features
589
-
590
- - [#73][] Allow Dsl's `group` method to accept a Symbol as group name. ([@johnbintz][])
591
- - [#51][] Allow options (like `:priority`) to be passed through to the Notifier. ([@indirect][] and [@netzpirat][])
592
-
593
- ### Improvement
594
-
595
- - [#74][] Add 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][])
596
-
597
- ## 0.4.0.rc - May 28, 2011
598
-
599
- ### Bug fixes
600
-
601
- - [#69][] Fix typo in README: `Ctr-/` => `Ctr-\`. ([@tinogomes][])
602
- - [#66][] Support for dashes in guard names. ([@johnbintz][])
603
- - Require `guard/ui` because `Guard::Notifier` can be required without full Guard. ([@yannlugrin][])
604
- - Handle quick file (<1s) modification. Avoid to catch modified files without content modification (sha1 checksum). ([@thibaudgg][] and [@netzpirat][])
605
- - Fix `Guard::Notifier` (when growl/libnotify not present). ([@thibaudgg][])
606
- - Fix Rubygems deprecation messages. ([@thibaudgg][])
607
-
608
- ### New features
609
-
610
- - [#67][] Allow Guardfile in `$HOME` folder. ([@hashrocketeer][])
611
- - [#64][] Windows notifications support. ([@stereobooster][])
612
- - [#63][] Refactor listeners to work as a library. ([@niklas][])
613
- - Use `ENV["GUARD_NOTIFY"]` to disable notifications. ([@thibaudgg][])
614
- - Cleaning up all specs. ([@netzpirat][])
615
- - [#60][] Add Windows support. ([@stereobooster][])
616
- - [#58][] Extract code from signal handlers into methods. ([@nicksieger][])
617
- - [#55][] It's 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][])
618
-
619
- ## 0.3.4 - April 24, 2011
620
-
621
- ### Bug fix
622
-
623
- - [#41][] Remove useless Bundler requirement. ([@thibaudgg][])
624
-
625
- ### New features
626
-
627
- - Change CHANGELOG from RDOC to Markdown and cleaned it! Let's celebrate! ([@rymai][])
628
- - Change README from RDOC to Markdown! Let's celebrate! ([@thibaudgg][])
629
- - [#48][] Add support for inline Guard classes rather than requiring a gem. ([@jrsacks][])
630
-
631
- ## 0.3.3 - April 18, 2011
632
-
633
- ### Bug fix
634
-
635
- - Fix `new_modified_files` rerun conditions on `Guard.run_on_change_for_all_guards`. ([@thibaudgg][])
636
-
637
- ## 0.3.2 - April 17, 2011
638
-
639
- ### Bug fix
640
-
641
- - [#43][] Fix `guard init` command. ([@brainopia][])
642
-
643
- ## 0.3.1 - April 14, 2011
644
-
645
- ### Bug fixes
646
-
647
- - Return unique filenames from Linux listener. (Marian Schubert)
648
- - `Guard.get_guard_class` return wrong class when loaded nested class. ([@koshigoe][])
649
- - [#35][] Fix open-gem/gem_open dependency problem by using `gem which` to locate guards gem path. (reported by [@thierryhenrio][], fixed by [@thibaudgg][])
650
- - [#38][] and [#39][] Fix an invalid ANSI escape code in `Guard::UI.reset_line`. ([@gix][])
651
-
652
- ### New feature
653
-
654
- - [#28][] New `-n` command line option to disable notifications (Growl / Libnotify). ([@thibaudgg][])
655
-
656
- ## 0.3.0 - January 19, 2011
657
-
658
- ### Bug fix
659
-
660
- - Avoid launching `run_on_change` guards method when no files matched. `--clear` guard argument is now usable. ([@thibaudgg][])
661
-
662
- ### New features
663
-
664
- - The whole directory is now watched during `run_on_change` to detect new files modifications. ([@thibaudgg][])
665
- - [#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][])
666
- - `watch` patterns are now more strict: strings are matched with `String#==`, `Regexp` are matched with `Regexp#match`. ([@rymai][])
667
- - A deprecation warning is displayed if your `Guardfile` contains `String` that look like `Regexp` (bad!). ([@rymai][])
668
- - It's now possible to return an `Enumerable` in the `watch` optional blocks in the `Guardfile`. ([@rymai][])
669
-
670
- ### New specs
671
-
672
- - `Guard::Watcher`. ([@rymai][])
673
- - [#13][] `Guard::DSL`. ([@oliamb][])
674
-
675
- ## 0.2.2 - October 25, 2010
676
-
677
- ### Bug fix
678
-
679
- - [#5][] Avoid creating new copy of `fsevent_watch` every time a file is changed. (reported by [@stouset][], fixed by [@thibaudgg][])
680
-
681
- ## 0.2.1 - October 24, 2010
682
-
683
- ### Bug fixes
684
-
685
- - [#7][] Fix for Linux support. ([@yannlugrin][])
686
- - [#6][] Locate guard now chomp newline in result path. ([@yannlugrin][])
687
-
688
- ## 0.2.0 - October 21, 2010
689
-
690
- ### Bug fixes
691
-
692
- - [#3][] `guard init <guard-name>` no more need `Gemfile` but `open_gem` is required now. (reported by [@wereHamster][], fixed by [@thibaudgg][])
693
- - [#2][] 1.8.6 compatibility. (reported by [@veged][], fixed by [@thibaudgg][])
694
- - Remove Growl and Libnotify dependencies. ([@thibaudgg][])
695
-
696
- ## 0.2.0.beta.1 - October 17, 2010
697
-
698
- ### New features
699
-
700
- - Improve listeners support (`rb-fsevent` and `rb-inotify`). ([@thibaudgg][])
701
- - Add polling listening fallback. ([@thibaudgg][])
702
-
703
-
704
- <!--- The following link definition list is generated by PimpMyChangelog --->
705
- [#2]: https://github.com/guard/guard/issues/2
706
- [#3]: https://github.com/guard/guard/issues/3
707
- [#5]: https://github.com/guard/guard/issues/5
708
- [#6]: https://github.com/guard/guard/issues/6
709
- [#7]: https://github.com/guard/guard/issues/7
710
- [#12]: https://github.com/guard/guard/issues/12
711
- [#13]: https://github.com/guard/guard/issues/13
712
- [#26]: https://github.com/guard/guard/issues/26
713
- [#28]: https://github.com/guard/guard/issues/28
714
- [#35]: https://github.com/guard/guard/issues/35
715
- [#38]: https://github.com/guard/guard/issues/38
716
- [#39]: https://github.com/guard/guard/issues/39
717
- [#41]: https://github.com/guard/guard/issues/41
718
- [#42]: https://github.com/guard/guard/issues/42
719
- [#43]: https://github.com/guard/guard/issues/43
720
- [#48]: https://github.com/guard/guard/issues/48
721
- [#51]: https://github.com/guard/guard/issues/51
722
- [#55]: https://github.com/guard/guard/issues/55
723
- [#58]: https://github.com/guard/guard/issues/58
724
- [#60]: https://github.com/guard/guard/issues/60
725
- [#63]: https://github.com/guard/guard/issues/63
726
- [#64]: https://github.com/guard/guard/issues/64
727
- [#66]: https://github.com/guard/guard/issues/66
728
- [#67]: https://github.com/guard/guard/issues/67
729
- [#69]: https://github.com/guard/guard/issues/69
730
- [#73]: https://github.com/guard/guard/issues/73
731
- [#74]: https://github.com/guard/guard/issues/74
732
- [#77]: https://github.com/guard/guard/issues/77
733
- [#79]: https://github.com/guard/guard/issues/79
734
- [#80]: https://github.com/guard/guard/issues/80
735
- [#82]: https://github.com/guard/guard/issues/82
736
- [#84]: https://github.com/guard/guard/issues/84
737
- [#86]: https://github.com/guard/guard/issues/86
738
- [#88]: https://github.com/guard/guard/issues/88
739
- [#90]: https://github.com/guard/guard/issues/90
740
- [#91]: https://github.com/guard/guard/issues/91
741
- [#94]: https://github.com/guard/guard/issues/94
742
- [#95]: https://github.com/guard/guard/issues/95
743
- [#97]: https://github.com/guard/guard/issues/97
744
- [#98]: https://github.com/guard/guard/issues/98
745
- [#99]: https://github.com/guard/guard/issues/99
746
- [#107]: https://github.com/guard/guard/issues/107
747
- [#112]: https://github.com/guard/guard/issues/112
748
- [#115]: https://github.com/guard/guard/issues/115
749
- [#119]: https://github.com/guard/guard/issues/119
750
- [#120]: https://github.com/guard/guard/issues/120
751
- [#121]: https://github.com/guard/guard/issues/121
752
- [#128]: https://github.com/guard/guard/issues/128
753
- [#130]: https://github.com/guard/guard/issues/130
754
- [#136]: https://github.com/guard/guard/issues/136
755
- [#137]: https://github.com/guard/guard/issues/137
756
- [#138]: https://github.com/guard/guard/issues/138
757
- [#144]: https://github.com/guard/guard/issues/144
758
- [#145]: https://github.com/guard/guard/issues/145
759
- [#146]: https://github.com/guard/guard/issues/146
760
- [#149]: https://github.com/guard/guard/issues/149
761
- [#150]: https://github.com/guard/guard/issues/150
762
- [#152]: https://github.com/guard/guard/issues/152
763
- [#156]: https://github.com/guard/guard/issues/156
764
- [#157]: https://github.com/guard/guard/issues/157
765
- [#160]: https://github.com/guard/guard/issues/160
766
- [#165]: https://github.com/guard/guard/issues/165
767
- [#166]: https://github.com/guard/guard/issues/166
768
- [#167]: https://github.com/guard/guard/issues/167
769
- [#168]: https://github.com/guard/guard/issues/168
770
- [#173]: https://github.com/guard/guard/issues/173
771
- [#174]: https://github.com/guard/guard/issues/174
772
- [#195]: https://github.com/guard/guard/issues/195
773
- [#213]: https://github.com/guard/guard/issues/213
774
- [#214]: https://github.com/guard/guard/issues/214
775
- [#216]: https://github.com/guard/guard/issues/216
776
- [#218]: https://github.com/guard/guard/issues/218
777
- [#223]: https://github.com/guard/guard/issues/223
778
- [#226]: https://github.com/guard/guard/issues/226
779
- [#227]: https://github.com/guard/guard/issues/227
780
- [#232]: https://github.com/guard/guard/issues/232
781
- [#233]: https://github.com/guard/guard/issues/233
782
- [#236]: https://github.com/guard/guard/issues/236
783
- [#238]: https://github.com/guard/guard/issues/238
784
- [#249]: https://github.com/guard/guard/issues/249
785
- [#250]: https://github.com/guard/guard/issues/250
786
- [#254]: https://github.com/guard/guard/issues/254
787
- [#259]: https://github.com/guard/guard/issues/259
788
- [#260]: https://github.com/guard/guard/issues/260
789
- [#261]: https://github.com/guard/guard/issues/261
790
- [#270]: https://github.com/guard/guard/issues/270
791
- [#274]: https://github.com/guard/guard/issues/274
792
- [#275]: https://github.com/guard/guard/issues/275
793
- [#283]: https://github.com/guard/guard/issues/283
794
- [#298]: https://github.com/guard/guard/issues/298
795
- [#299]: https://github.com/guard/guard/issues/299
796
- [#315]: https://github.com/guard/guard/issues/315
797
- [#316]: https://github.com/guard/guard/issues/316
798
- [#317]: https://github.com/guard/guard/issues/317
799
- [#324]: https://github.com/guard/guard/issues/324
800
- [#327]: https://github.com/guard/guard/issues/327
801
- [#331]: https://github.com/guard/guard/issues/331
802
- [#334]: https://github.com/guard/guard/issues/334
803
- [#342]: https://github.com/guard/guard/issues/342
804
- [#343]: https://github.com/guard/guard/issues/343
805
- [#344]: https://github.com/guard/guard/issues/344
806
- [#345]: https://github.com/guard/guard/issues/345
807
- [#348]: https://github.com/guard/guard/issues/348
808
- [#351]: https://github.com/guard/guard/issues/351
809
- [#352]: https://github.com/guard/guard/issues/352
810
- [#353]: https://github.com/guard/guard/issues/353
811
- [#354]: https://github.com/guard/guard/issues/354
812
- [#358]: https://github.com/guard/guard/issues/358
813
- [#360]: https://github.com/guard/guard/issues/360
814
- [#361]: https://github.com/guard/guard/issues/361
815
- [#362]: https://github.com/guard/guard/issues/362
816
- [#364]: https://github.com/guard/guard/issues/364
817
- [#365]: https://github.com/guard/guard/issues/365
818
- [#367]: https://github.com/guard/guard/issues/367
819
- [#368]: https://github.com/guard/guard/issues/368
820
- [#369]: https://github.com/guard/guard/issues/369
821
- [#372]: https://github.com/guard/guard/issues/372
822
- [#376]: https://github.com/guard/guard/issues/376
823
- [#377]: https://github.com/guard/guard/issues/377
824
- [#378]: https://github.com/guard/guard/issues/378
825
- [#386]: https://github.com/guard/guard/issues/386
826
- [#387]: https://github.com/guard/guard/issues/387
827
- [#389]: https://github.com/guard/guard/issues/389
828
- [#400]: https://github.com/guard/guard/issues/400
829
- [#401]: https://github.com/guard/guard/issues/401
830
- [#402]: https://github.com/guard/guard/issues/402
831
- [#406]: https://github.com/guard/guard/issues/406
832
- [#407]: https://github.com/guard/guard/issues/407
833
- [#408]: https://github.com/guard/guard/issues/408
834
- [#409]: https://github.com/guard/guard/issues/409
835
- [#410]: https://github.com/guard/guard/issues/410
836
- [#413]: https://github.com/guard/guard/issues/413
837
- [#414]: https://github.com/guard/guard/issues/414
838
- [#416]: https://github.com/guard/guard/issues/416
839
- [#435]: https://github.com/guard/guard/issues/435
840
- [#443]: https://github.com/guard/guard/issues/443
841
- [#450]: https://github.com/guard/guard/issues/450
842
- [#453]: https://github.com/guard/guard/issues/453
843
- [#456]: https://github.com/guard/guard/issues/456
844
- [#457]: https://github.com/guard/guard/issues/457
845
- [#460]: https://github.com/guard/guard/issues/460
846
- [#463]: https://github.com/guard/guard/issues/463
847
- [#469]: https://github.com/guard/guard/issues/469
848
- [#471]: https://github.com/guard/guard/issues/471
849
- [#472]: https://github.com/guard/guard/issues/472
850
- [@Gazer]: https://github.com/Gazer
851
- [@Maher4Ever]: https://github.com/Maher4Ever
852
- [@Nerian]: https://github.com/Nerian
853
- [@alandipert]: https://github.com/alandipert
854
- [@amiel]: https://github.com/amiel
855
- [@anithri]: https://github.com/anithri
856
- [@ashleyconnor]: https://github.com/ashleyconnor
857
- [@aspiers]: https://github.com/aspiers
858
- [@benolee]: https://github.com/benolee
859
- [@brainopia]: https://github.com/brainopia
860
- [@bronson]: https://github.com/bronson
861
- [@cablegram]: https://github.com/cablegram
862
- [@capotej]: https://github.com/capotej
863
- [@ches]: https://github.com/ches
864
- [@chrisberkhout]: https://github.com/chrisberkhout
865
- [@cknadler]: https://github.com/cknadler
866
- [@d1]: https://github.com/d1
867
- [@dgutov]: https://github.com/dgutov
868
- [@dnagir]: https://github.com/dnagir
869
- [@docwhat]: https://github.com/docwhat
870
- [@dyfrgi]: https://github.com/dyfrgi
871
- [@earlonrails]: https://github.com/earlonrails
872
- [@envygeeks]: https://github.com/envygeeks
873
- [@etehtsea]: https://github.com/etehtsea
874
- [@f1sherman]: https://github.com/f1sherman
875
- [@fabioyamate]: https://github.com/fabioyamate
876
- [@fnichol]: https://github.com/fnichol
877
- [@foxycoder]: https://github.com/foxycoder
878
- [@gix]: https://github.com/gix
879
- [@hardipe]: https://github.com/hardipe
880
- [@hashrocketeer]: https://github.com/hashrocketeer
881
- [@hawx]: https://github.com/hawx
882
- [@hron]: https://github.com/hron
883
- [@ianwhite]: https://github.com/ianwhite
884
- [@iljoo]: https://github.com/iljoo
885
- [@indirect]: https://github.com/indirect
886
- [@japgolly]: https://github.com/japgolly
887
- [@jeffutter]: https://github.com/jeffutter
888
- [@jfolkins]: https://github.com/jfolkins
889
- [@johnbintz]: https://github.com/johnbintz
890
- [@jredville]: https://github.com/jredville
891
- [@jrsacks]: https://github.com/jrsacks
892
- [@koshigoe]: https://github.com/koshigoe
893
- [@laserlemon]: https://github.com/laserlemon
894
- [@limeyd]: https://github.com/limeyd
895
- [@madtrick]: https://github.com/madtrick
896
- [@maio]: https://github.com/maio
897
- [@martoche]: https://github.com/martoche
898
- [@mattgreen]: https://github.com/mattgreen
899
- [@matthijsgroen]: https://github.com/matthijsgroen
900
- [@mcmire]: https://github.com/mcmire
901
- [@mislav]: https://github.com/mislav
902
- [@monocle]: https://github.com/monocle
903
- [@mordaroso]: https://github.com/mordaroso
904
- [@nestegg]: https://github.com/nestegg
905
- [@netzpirat]: https://github.com/netzpirat
906
- [@nickmabry]: https://github.com/nickmabry
907
- [@nicksieger]: https://github.com/nicksieger
908
- [@niklas]: https://github.com/niklas
909
- [@oliamb]: https://github.com/oliamb
910
- [@oreoshake]: https://github.com/oreoshake
911
- [@pcreux]: https://github.com/pcreux
912
- [@philomory]: https://github.com/philomory
913
- [@pirukire]: https://github.com/pirukire
914
- [@pritchie]: https://github.com/pritchie
915
- [@rking]: https://github.com/rking
916
- [@rmm5t]: https://github.com/rmm5t
917
- [@royvandewater]: https://github.com/royvandewater
918
- [@rudicode]: https://github.com/rudicode
919
- [@rupert654]: https://github.com/rupert654
920
- [@rweng]: https://github.com/rweng
921
- [@rymai]: https://github.com/rymai
922
- [@schmurfy]: https://github.com/schmurfy
923
- [@scottdavis]: https://github.com/scottdavis
924
- [@semperos]: https://github.com/semperos
925
- [@simon-ohara]: https://github.com/simon-ohara
926
- [@spadin]: https://github.com/spadin
927
- [@steakknife]: https://github.com/steakknife
928
- [@stereobooster]: https://github.com/stereobooster
929
- [@stouset]: https://github.com/stouset
930
- [@sunaku]: https://github.com/sunaku
931
- [@sutherland]: https://github.com/sutherland
932
- [@tarsolya]: https://github.com/tarsolya
933
- [@thibaudgg]: https://github.com/thibaudgg
934
- [@thierryhenrio]: https://github.com/thierryhenrio
935
- [@timmfin]: https://github.com/timmfin
936
- [@tinogomes]: https://github.com/tinogomes
937
- [@tomas-zemres]: https://github.com/tomas-zemres
938
- [@tpope]: https://github.com/tpope
939
- [@uk-ar]: https://github.com/uk-ar
940
- [@veged]: https://github.com/veged
941
- [@viking]: https://github.com/viking
942
- [@waldo]: https://github.com/waldo
943
- [@wereHamster]: https://github.com/wereHamster
944
- [@yannlugrin]: https://github.com/yannlugrin
945
- [@zonque]: https://github.com/zonque
1
+ # Moved to [Github releases](https://github.com/guard/guard/releases) page.