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/man/guard.1.html CHANGED
@@ -1,176 +1,176 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta http-equiv='content-type' value='text/html;charset=utf8'>
5
- <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
6
- <title>guard(1) - Guard keeps an eye on your file modifications.</title>
7
- <style type='text/css' media='all'>
8
- /* style: man */
9
- body#manpage {margin:0}
10
- .mp {max-width:100ex;padding:0 9ex 1ex 4ex}
11
- .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
12
- .mp h2 {margin:10px 0 0 0}
13
- .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
14
- .mp h3 {margin:0 0 0 4ex}
15
- .mp dt {margin:0;clear:left}
16
- .mp dt.flush {float:left;width:8ex}
17
- .mp dd {margin:0 0 0 9ex}
18
- .mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
19
- .mp pre {margin-bottom:20px}
20
- .mp pre+h2,.mp pre+h3 {margin-top:22px}
21
- .mp h2+pre,.mp h3+pre {margin-top:5px}
22
- .mp img {display:block;margin:auto}
23
- .mp h1.man-title {display:none}
24
- .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
25
- .mp h2 {font-size:16px;line-height:1.25}
26
- .mp h1 {font-size:20px;line-height:2}
27
- .mp {text-align:justify;background:#fff}
28
- .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
29
- .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
30
- .mp u {text-decoration:underline}
31
- .mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
32
- .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
33
- .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
34
- .mp b.man-ref {font-weight:normal;color:#434241}
35
- .mp pre {padding:0 4ex}
36
- .mp pre code {font-weight:normal;color:#434241}
37
- .mp h2+pre,h3+pre {padding-left:0}
38
- ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
39
- ol.man-decor {width:100%}
40
- ol.man-decor li.tl {text-align:left}
41
- ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
- ol.man-decor li.tr {text-align:right;float:right}
43
- </style>
44
- </head>
45
- <!--
46
- The following styles are deprecated and will be removed at some point:
47
- div#man, div#man ol.man, div#man ol.head, div#man ol.man.
48
-
49
- The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
50
- .man-navigation should be used instead.
51
- -->
52
- <body id='manpage'>
53
- <div class='mp' id='man'>
54
-
55
- <div class='man-navigation' style='display:none'>
56
- <a href="#NAME">NAME</a>
57
- <a href="#DESCRIPTION">DESCRIPTION</a>
58
- <a href="#SYNOPSIS">SYNOPSIS</a>
59
- <a href="#COMMANDS">COMMANDS</a>
60
- <a href="#EXAMPLES">EXAMPLES</a>
61
- <a href="#AUTHORS-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</a>
62
- <a href="#WWW">WWW</a>
63
- </div>
64
-
65
- <ol class='man-decor man-head man head'>
66
- <li class='tl'>guard(1)</li>
67
- <li class='tc'></li>
68
- <li class='tr'>guard(1)</li>
69
- </ol>
70
-
71
- <h2 id="NAME">NAME</h2>
72
- <p class="man-name">
73
- <code>guard</code> - <span class="man-whatis">Guard keeps an eye on your file modifications.</span>
74
- </p>
75
-
76
- <h2 id="DESCRIPTION">DESCRIPTION</h2>
77
-
78
- <p>Guard is a command line tool that easily handle events on files modifications.</p>
79
-
80
- <h2 id="SYNOPSIS">SYNOPSIS</h2>
81
-
82
- <p><code>guard &lt;COMMAND> &lt;OPTIONS></code></p>
83
-
84
- <h2 id="COMMANDS">COMMANDS</h2>
85
-
86
- <h3 id="start">start</h3>
87
-
88
- <p>Starts Guard. This is the default command if none is provided.</p>
89
-
90
- <p>The following options are available:</p>
91
-
92
- <p><code>-c</code>, <code>--clear</code>
93
- Clears the Shell after each change.</p>
94
-
95
- <p><code>-n</code>, <code>--notify</code> <var>FLAG</var>
96
- Disable notifications (Growl or Libnotify depending on your system).
97
- Notifications can be disabled globally by setting a GUARD_NOTIFY environment variable to false.
98
- FLAG can be <code>true</code>/<code>false</code> or <code>t</code>/<code>f</code>.</p>
99
-
100
- <p><code>-d</code>, <code>--debug</code>
101
- Runs Guard in debug mode.</p>
102
-
103
- <p><code>-g</code>, <code>--group</code> <var>GROUP1</var> <var>GROUP2</var>...
104
- Runs only the groups specified by GROUP1, GROUP2 etc.
105
- Groups name should be separated by spaces.
106
- Guards that don't belong to a group are considered global and are always run.</p>
107
-
108
- <p><code>-w</code>, <code>--watchdir</code> <var>PATH</var></p>
109
-
110
- <p>Tells Guard to watch PATH instead of <code>./</code>.</p>
111
-
112
- <p><code>-G</code>, <code>--guardfile</code> <var>FILE</var>
113
- Tells Guard to use FILE as its Guardfile instead of <code>./Guardfile</code> or <code>~/.Guardfile</code>.</p>
114
-
115
- <h3 id="init-GUARD">init <a href="guard.html">GUARD</a></h3>
116
-
117
- <p>If no Guardfile is present in the current directory, creates an empty Guardfile.</p>
118
-
119
- <p>If <var>GUARD</var> is present, add its default Guardfile configuration to the current Guardfile.
120
- Note that <var>GUARD</var> is the guard's name without the <code>guard-</code> prefix.
121
- For instance to initialize guard-rspec, run <code>guard init rspec</code>.</p>
122
-
123
- <h3 id="list">list</h3>
124
-
125
- <p>Lists guards that can be used with the <code>init</code> command.</p>
126
-
127
- <h3 id="-T-show">-T, show</h3>
128
-
129
- <p>List defined groups and guards for the current Guardfile.</p>
130
-
131
- <h3 id="-h-help-COMMAND-">-h, help [COMMAND]</h3>
132
-
133
- <p>List all of Guard's available commands.</p>
134
-
135
- <p>If <var>COMMAND</var> is given, displays a specific help for <var>TASK</var>.</p>
136
-
137
- <h2 id="EXAMPLES">EXAMPLES</h2>
138
-
139
- <p>Initialize Guard and a specific guard at the same time:</p>
140
-
141
- <p><code>[bundle exec] guard init [rspec]</code></p>
142
-
143
- <p>Run Guard:</p>
144
-
145
- <p><code>[bundle exec] guard [start] --watchdir ~/dev --guardfile ~/env/Guardfile --clear --group backend frontend --notify false --debug</code></p>
146
-
147
- <p>or in a more concise way:</p>
148
-
149
- <p><code>[bundle exec] guard [start] -w ~/dev -G ~/env/Guardfile -c -g backend frontend -n f -d</code></p>
150
-
151
- <h2 id="AUTHORS-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</h2>
152
-
153
- <p>Thibaud Guillaume-Gentil is the main author.</p>
154
-
155
- <p>A list of contributors based on all commits can be found here:
156
- https://github.com/guard/guard/contributors</p>
157
-
158
- <p>For an exhaustive list of all the contributors, please see the CHANGELOG:
159
- https://github.com/guard/guard/blob/master/CHANGELOG.md</p>
160
-
161
- <p>This manual has been written by Remy Coutable.</p>
162
-
163
- <h2 id="WWW">WWW</h2>
164
-
165
- <p>https://github.com/guard/guard</p>
166
-
167
-
168
- <ol class='man-decor man-foot man foot'>
169
- <li class='tl'></li>
170
- <li class='tc'>September 2011</li>
171
- <li class='tr'>guard(1)</li>
172
- </ol>
173
-
174
- </div>
175
- </body>
176
- </html>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv='content-type' value='text/html;charset=utf8'>
5
+ <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
6
+ <title>guard(1) - Guard keeps an eye on your file modifications.</title>
7
+ <style type='text/css' media='all'>
8
+ /* style: man */
9
+ body#manpage {margin:0}
10
+ .mp {max-width:100ex;padding:0 9ex 1ex 4ex}
11
+ .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
12
+ .mp h2 {margin:10px 0 0 0}
13
+ .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
14
+ .mp h3 {margin:0 0 0 4ex}
15
+ .mp dt {margin:0;clear:left}
16
+ .mp dt.flush {float:left;width:8ex}
17
+ .mp dd {margin:0 0 0 9ex}
18
+ .mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
19
+ .mp pre {margin-bottom:20px}
20
+ .mp pre+h2,.mp pre+h3 {margin-top:22px}
21
+ .mp h2+pre,.mp h3+pre {margin-top:5px}
22
+ .mp img {display:block;margin:auto}
23
+ .mp h1.man-title {display:none}
24
+ .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
25
+ .mp h2 {font-size:16px;line-height:1.25}
26
+ .mp h1 {font-size:20px;line-height:2}
27
+ .mp {text-align:justify;background:#fff}
28
+ .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
29
+ .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
30
+ .mp u {text-decoration:underline}
31
+ .mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
32
+ .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
33
+ .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
34
+ .mp b.man-ref {font-weight:normal;color:#434241}
35
+ .mp pre {padding:0 4ex}
36
+ .mp pre code {font-weight:normal;color:#434241}
37
+ .mp h2+pre,h3+pre {padding-left:0}
38
+ ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
39
+ ol.man-decor {width:100%}
40
+ ol.man-decor li.tl {text-align:left}
41
+ ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
+ ol.man-decor li.tr {text-align:right;float:right}
43
+ </style>
44
+ </head>
45
+ <!--
46
+ The following styles are deprecated and will be removed at some point:
47
+ div#man, div#man ol.man, div#man ol.head, div#man ol.man.
48
+
49
+ The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
50
+ .man-navigation should be used instead.
51
+ -->
52
+ <body id='manpage'>
53
+ <div class='mp' id='man'>
54
+
55
+ <div class='man-navigation' style='display:none'>
56
+ <a href="#NAME">NAME</a>
57
+ <a href="#DESCRIPTION">DESCRIPTION</a>
58
+ <a href="#SYNOPSIS">SYNOPSIS</a>
59
+ <a href="#COMMANDS">COMMANDS</a>
60
+ <a href="#EXAMPLES">EXAMPLES</a>
61
+ <a href="#AUTHORS-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</a>
62
+ <a href="#WWW">WWW</a>
63
+ </div>
64
+
65
+ <ol class='man-decor man-head man head'>
66
+ <li class='tl'>guard(1)</li>
67
+ <li class='tc'></li>
68
+ <li class='tr'>guard(1)</li>
69
+ </ol>
70
+
71
+ <h2 id="NAME">NAME</h2>
72
+ <p class="man-name">
73
+ <code>guard</code> - <span class="man-whatis">Guard keeps an eye on your file modifications.</span>
74
+ </p>
75
+
76
+ <h2 id="DESCRIPTION">DESCRIPTION</h2>
77
+
78
+ <p>Guard is a command line tool that easily handle events on files modifications.</p>
79
+
80
+ <h2 id="SYNOPSIS">SYNOPSIS</h2>
81
+
82
+ <p><code>guard &lt;COMMAND> &lt;OPTIONS></code></p>
83
+
84
+ <h2 id="COMMANDS">COMMANDS</h2>
85
+
86
+ <h3 id="start">start</h3>
87
+
88
+ <p>Starts Guard. This is the default command if none is provided.</p>
89
+
90
+ <p>The following options are available:</p>
91
+
92
+ <p><code>-c</code>, <code>--clear</code>
93
+ Clears the Shell after each change.</p>
94
+
95
+ <p><code>-n</code>, <code>--notify</code> <var>FLAG</var>
96
+ Disable notifications (Growl or Libnotify depending on your system).
97
+ Notifications can be disabled globally by setting a GUARD_NOTIFY environment variable to false.
98
+ FLAG can be <code>true</code>/<code>false</code> or <code>t</code>/<code>f</code>.</p>
99
+
100
+ <p><code>-d</code>, <code>--debug</code>
101
+ Runs Guard in debug mode.</p>
102
+
103
+ <p><code>-g</code>, <code>--group</code> <var>GROUP1</var> <var>GROUP2</var>...
104
+ Runs only the groups specified by GROUP1, GROUP2 etc.
105
+ Groups name should be separated by spaces.
106
+ Guards that don't belong to a group are considered global and are always run.</p>
107
+
108
+ <p><code>-w</code>, <code>--watchdir</code> <var>PATH</var></p>
109
+
110
+ <p>Tells Guard to watch PATH instead of <code>./</code>.</p>
111
+
112
+ <p><code>-G</code>, <code>--guardfile</code> <var>FILE</var>
113
+ Tells Guard to use FILE as its Guardfile instead of <code>./Guardfile</code> or <code>~/.Guardfile</code>.</p>
114
+
115
+ <h3 id="init-GUARD">init <a href="guard.html">GUARD</a></h3>
116
+
117
+ <p>If no Guardfile is present in the current directory, creates an empty Guardfile.</p>
118
+
119
+ <p>If <var>GUARD</var> is present, add its default Guardfile configuration to the current Guardfile.
120
+ Note that <var>GUARD</var> is the guard's name without the <code>guard-</code> prefix.
121
+ For instance to initialize guard-rspec, run <code>guard init rspec</code>.</p>
122
+
123
+ <h3 id="list">list</h3>
124
+
125
+ <p>Lists guards that can be used with the <code>init</code> command.</p>
126
+
127
+ <h3 id="-T-show">-T, show</h3>
128
+
129
+ <p>List defined groups and guards for the current Guardfile.</p>
130
+
131
+ <h3 id="-h-help-COMMAND-">-h, help [COMMAND]</h3>
132
+
133
+ <p>List all of Guard's available commands.</p>
134
+
135
+ <p>If <var>COMMAND</var> is given, displays a specific help for <var>TASK</var>.</p>
136
+
137
+ <h2 id="EXAMPLES">EXAMPLES</h2>
138
+
139
+ <p>Initialize Guard and a specific guard at the same time:</p>
140
+
141
+ <p><code>[bundle exec] guard init [rspec]</code></p>
142
+
143
+ <p>Run Guard:</p>
144
+
145
+ <p><code>[bundle exec] guard [start] --watchdir ~/dev --guardfile ~/env/Guardfile --clear --group backend frontend --notify false --debug</code></p>
146
+
147
+ <p>or in a more concise way:</p>
148
+
149
+ <p><code>[bundle exec] guard [start] -w ~/dev -G ~/env/Guardfile -c -g backend frontend -n f -d</code></p>
150
+
151
+ <h2 id="AUTHORS-CONTRIBUTORS">AUTHORS / CONTRIBUTORS</h2>
152
+
153
+ <p>Thibaud Guillaume-Gentil is the main author.</p>
154
+
155
+ <p>A list of contributors based on all commits can be found here:
156
+ https://github.com/guard/guard/contributors</p>
157
+
158
+ <p>For an exhaustive list of all the contributors, please see the CHANGELOG:
159
+ https://github.com/guard/guard/blob/master/CHANGELOG.md</p>
160
+
161
+ <p>This manual has been written by Remy Coutable.</p>
162
+
163
+ <h2 id="WWW">WWW</h2>
164
+
165
+ <p>https://github.com/guard/guard</p>
166
+
167
+
168
+ <ol class='man-decor man-foot man foot'>
169
+ <li class='tl'></li>
170
+ <li class='tc'>September 2011</li>
171
+ <li class='tr'>guard(1)</li>
172
+ </ol>
173
+
174
+ </div>
175
+ </body>
176
+ </html>
metadata CHANGED
@@ -1,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0.rc1
5
- prerelease: 6
4
+ version: 0.7.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Thibaud Guillaume-Gentil
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-05 00:00:00.000000000Z
12
+ date: 2011-09-14 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
16
- requirement: &70272879296960 !ruby/object:Gem::Requirement
16
+ requirement: &70247827024180 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70272879296960
24
+ version_requirements: *70247827024180
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rspec
27
- requirement: &70272879296200 !ruby/object:Gem::Requirement
27
+ requirement: &70247827022860 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 2.6.0
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70272879296200
35
+ version_requirements: *70247827022860
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: guard-rspec
38
- requirement: &70272879295180 !ruby/object:Gem::Requirement
38
+ requirement: &70247827021760 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 0.3.1
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70272879295180
46
+ version_requirements: *70247827021760
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: thor
49
- requirement: &70272879294180 !ruby/object:Gem::Requirement
49
+ requirement: &70247827021080 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ~>
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: 0.14.6
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *70272879294180
57
+ version_requirements: *70247827021080
58
58
  description: Guard is a command line tool to easily handle events on file system modifications.
59
59
  email:
60
60
  - thibaud@thibaud.me
@@ -69,35 +69,21 @@ files:
69
69
  - images/success.png
70
70
  - lib/guard/cli.rb
71
71
  - lib/guard/dsl.rb
72
- - lib/guard/dsl.rbc
73
72
  - lib/guard/dsl_describer.rb
74
- - lib/guard/dsl_describer.rbc
75
73
  - lib/guard/guard.rb
76
- - lib/guard/guard.rbc
77
74
  - lib/guard/hook.rb
78
75
  - lib/guard/interactor.rb
79
- - lib/guard/interactor.rbc
80
76
  - lib/guard/listener.rb
81
- - lib/guard/listener.rbc
82
77
  - lib/guard/listeners/darwin.rb
83
- - lib/guard/listeners/darwin.rbc
84
78
  - lib/guard/listeners/linux.rb
85
- - lib/guard/listeners/linux.rbc
86
79
  - lib/guard/listeners/polling.rb
87
- - lib/guard/listeners/polling.rbc
88
80
  - lib/guard/listeners/windows.rb
89
- - lib/guard/listeners/windows.rbc
90
81
  - lib/guard/notifier.rb
91
- - lib/guard/notifier.rbc
92
82
  - lib/guard/templates/Guardfile
93
83
  - lib/guard/ui.rb
94
- - lib/guard/ui.rbc
95
84
  - lib/guard/version.rb
96
- - lib/guard/version.rbc
97
85
  - lib/guard/watcher.rb
98
- - lib/guard/watcher.rbc
99
86
  - lib/guard.rb
100
- - lib/guard.rbc
101
87
  - CHANGELOG.md
102
88
  - LICENSE
103
89
  - man/guard.1