guard-test 0.3.1 → 0.4.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.
@@ -1,4 +1,4 @@
1
- guard 'test' do
1
+ guard :test do
2
2
  watch(%r{^lib/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
3
3
  watch(%r{^test/.+_test\.rb$})
4
4
  watch('test/test_helper.rb') { "test" }
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  module Guard
3
3
  module TestVersion
4
- VERSION = "0.3.1" unless defined? TestVersion::VERSION
4
+ VERSION = "0.4.0" unless defined? TestVersion::VERSION
5
5
  end
6
6
  end
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 17831730954501249321
2
+ 14325050222978361568
3
3
  x
4
4
  M
5
5
  1
@@ -123,21 +123,57 @@ x
123
123
  11
124
124
  TestVersion
125
125
  i
126
- 12
126
+ 48
127
127
  5
128
128
  66
129
- 65
130
- 7
129
+ 26
130
+ 93
131
+ 0
132
+ 15
133
+ 29
134
+ 21
131
135
  0
136
+ 45
137
+ 0
138
+ 1
139
+ 7
140
+ 2
141
+ 3
142
+ 98
143
+ 3
144
+ 3
145
+ 30
146
+ 8
147
+ 27
148
+ 25
149
+ 92
150
+ 0
151
+ 27
152
+ 8
153
+ 32
154
+ 15
132
155
  7
156
+ 4
157
+ 8
158
+ 33
159
+ 1
160
+ 9
161
+ 38
133
162
  1
163
+ 8
164
+ 47
165
+ 65
166
+ 7
167
+ 2
168
+ 7
169
+ 5
134
170
  64
135
171
  49
136
- 2
172
+ 6
137
173
  2
138
174
  11
139
175
  I
140
- 3
176
+ 4
141
177
  I
142
178
  0
143
179
  I
@@ -146,24 +182,38 @@ I
146
182
  0
147
183
  n
148
184
  p
149
- 3
185
+ 7
186
+ x
187
+ 11
188
+ TestVersion
189
+ n
150
190
  x
151
191
  7
152
192
  VERSION
193
+ x
194
+ 22
195
+ vm_const_defined_under
153
196
  s
154
- 9
155
- 0.3.0.rc5
197
+ 8
198
+ constant
199
+ s
200
+ 5
201
+ 0.4.0
156
202
  x
157
203
  9
158
204
  const_set
159
205
  p
160
- 3
206
+ 5
161
207
  I
162
208
  2
163
209
  I
164
210
  4
165
211
  I
166
- c
212
+ 2f
213
+ I
214
+ 0
215
+ I
216
+ 30
167
217
  x
168
218
  76
169
219
  /Users/remy/Development/Ruby/Gems/guard/guard-test/lib/guard/test/version.rb
data/lib/guard/test.rb CHANGED
@@ -10,7 +10,7 @@ module Guard
10
10
  autoload :Runner, 'guard/test/runner'
11
11
  autoload :Inspector, 'guard/test/inspector'
12
12
 
13
- def initialize(watchers=[], options={})
13
+ def initialize(watchers = [], options = {})
14
14
  super
15
15
  @options = {
16
16
  :all_on_start => true,