qed 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY CHANGED
@@ -1,5 +1,16 @@
1
1
  = RELEASE HISTORY
2
2
 
3
+ == 2.1.1 / 2010-04-08
4
+
5
+ Fixed bug introduced in the last version that executed all
6
+ scripts in a single binding. There needed to be a binding
7
+ for each script.
8
+
9
+ Changes:
10
+
11
+ * Fixed cross-script bug by moving binding instantiation into Script class.
12
+
13
+
3
14
  == 2.1.0 / 2010-04-07
4
15
 
5
16
  QED documents are now run in the TOPLEVEL context, rather
data/lib/qed.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module QED
2
- VERSION="2.1.0" #:till: VERSION="<%= version %>"
2
+ VERSION="2.1.1" #:till: VERSION="<%= version %>"
3
3
  end
4
4
 
5
5
  require 'qed/session'
@@ -19,10 +19,12 @@ module QED
19
19
 
20
20
  #
21
21
  def initialize(script, *observers)
22
- @script = script
23
- @file = script.file
24
- @scope = script.scope
25
- @root = script.root
22
+ @script = script
23
+ @file = script.file
24
+ @root = script.root
25
+ @scope = script.scope
26
+ @binding = script.binding
27
+ @advice = script.advice
26
28
 
27
29
  @observers = observers
28
30
  end
@@ -64,7 +66,7 @@ module QED
64
66
  def tag_pre(element)
65
67
  advise!(:before_code, element, @file)
66
68
  begin
67
- eval(element.text, @scope.__binding__, @file, element.line)
69
+ eval(element.text, @binding, @file, element.line)
68
70
  pass!(element)
69
71
  rescue Assertion => exception
70
72
  fail!(element, exception)
@@ -104,21 +106,23 @@ module QED
104
106
  #
105
107
  def import!(file)
106
108
  advise!(:unload)
107
- eval(File.read(file), @scope.__binding__, file)
109
+ eval(File.read(file), @binding, file)
108
110
  advise!(:load, file)
109
111
  end
110
112
 
111
113
  #
112
114
  def advise!(signal, *args)
113
115
  @observers.each{ |o| o.update(signal, *args) }
114
- @scope.__advice__.call(signal, *args)
116
+ #@scope.__advice__.call(signal, *args)
117
+ @advice.call(signal, *args)
115
118
  end
116
119
 
117
120
  #
118
121
  #def advise_when!(match)
119
- # @scope.__advice__.call_when(match)
122
+ # @advice.call_when(match)
120
123
  #end
121
124
 
122
125
  end
123
126
 
124
127
  end
128
+
@@ -68,7 +68,7 @@ module QED
68
68
  #end
69
69
 
70
70
  def __binding__
71
- @__binding__ ||= binding
71
+ binding
72
72
  end
73
73
 
74
74
  end
@@ -34,6 +34,16 @@ module QED
34
34
  apply_environment
35
35
  end
36
36
 
37
+ # One binding per script.
38
+ def binding
39
+ @binding ||= @scope.__binding__
40
+ end
41
+
42
+ #
43
+ def advice
44
+ @scope.__advice__
45
+ end
46
+
37
47
  #
38
48
  def dir
39
49
  @dir ||= File.expand_path(File.dirname(file))
@@ -0,0 +1 @@
1
+ 2010-04-08
@@ -1 +1 @@
1
- 2.1.0
1
+ 2.1.1
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 1
8
- - 0
9
- version: 2.1.0
8
+ - 1
9
+ version: 2.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Thomas Sawyer <transfire@gmail.com>
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-07 00:00:00 -04:00
17
+ date: 2010-04-08 00:00:00 -04:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -120,6 +120,7 @@ files:
120
120
  - meta/description
121
121
  - meta/homepage
122
122
  - meta/name
123
+ - meta/released
123
124
  - meta/repository
124
125
  - meta/requires
125
126
  - meta/ruby
@@ -129,7 +130,6 @@ files:
129
130
  - meta/version
130
131
  - README.rdoc
131
132
  - HISTORY
132
- - CHANGELOG.txt
133
133
  - COPYING
134
134
  has_rdoc: true
135
135
  homepage: http://proutils.github.com/qed
@@ -1,647 +0,0 @@
1
- commit 550c87db59313e8c7727088e532dbe970e8d2daf
2
- Author: 7rans <transfire@gmail.com>
3
- Date: Wed Apr 7 10:21:24 2010 -0400
4
-
5
- major: documents run in toplevel
6
-
7
- commit 83f38fcd4110b50bc54aa942d99e3531d8c72227
8
- Author: 7rans <transfire@gmail.com>
9
- Date: Thu Mar 4 13:08:31 2010 -0500
10
-
11
- admin: new version
12
-
13
- commit 908fb29708059998adf5ade0663fd94a0f6509f0
14
- Author: 7rans <transfire@gmail.com>
15
- Date: Thu Mar 4 13:07:46 2010 -0500
16
-
17
- admin: new version
18
-
19
- commit fc0c7af9b5a0bb18f47c77bdab399314db0fd5a3
20
- Author: 7rans <transfire@gmail.com>
21
- Date: Thu Mar 4 13:07:00 2010 -0500
22
-
23
- doc: update HISTORY
24
-
25
- commit 2478714a6092e0b12bc662b31bef582c32c78df2
26
- Author: 7rans <transfire@gmail.com>
27
- Date: Thu Mar 4 11:45:06 2010 -0500
28
-
29
- test: fix typos in helper qed demonstration
30
-
31
- commit 940a4487af23d4d961735309483dd148f68b2cc0
32
- Author: 7rans <transfire@gmail.com>
33
- Date: Thu Mar 4 11:44:39 2010 -0500
34
-
35
- admin: update requirements
36
-
37
- commit 415f2aa3eba192d20dee0e0dcb159d5f0d4ecbf8
38
- Author: 7rans <transfire@gmail.com>
39
- Date: Thu Mar 4 11:44:12 2010 -0500
40
-
41
- major: support multiple environment scripts
42
-
43
- commit d8ccce948ef34824ba75614f52312cb7e875efc0
44
- Author: 7rans <transfire@gmail.com>
45
- Date: Thu Mar 4 11:43:19 2010 -0500
46
-
47
- minor: qed/ is the only default location
48
-
49
- commit 70aafc79606fad5be00e00d373ba8d25993e7f6e
50
- Author: 7rans <transfire@gmail.com>
51
- Date: Thu Mar 4 11:42:49 2010 -0500
52
-
53
- minor: qed/ is the only default location
54
-
55
- commit f54478d45e4e573ab4c2db831024f890fda62411
56
- Author: 7rans <transfire@gmail.com>
57
- Date: Thu Mar 4 11:42:18 2010 -0500
58
-
59
- test: rearrange tests
60
-
61
- commit a8a12995eb6c6db720d545e081195c9834735d27
62
- Author: 7rans <transfire@gmail.com>
63
- Date: Fri Feb 5 17:52:45 2010 -0500
64
-
65
- bug: before_document needs script (ie. demo) as argument
66
-
67
- commit 699530a0721e42288a0a9ab603a94d624d243b08
68
- Author: 7rans <transfire@gmail.com>
69
- Date: Fri Feb 5 17:22:13 2010 -0500
70
-
71
- bug: pass +file+ parameter to DotProgress#before_code
72
-
73
- commit 7f76f71044c3045575d25e4c75731dbd680800d0
74
- Author: 7rans <transfire@gmail.com>
75
- Date: Fri Feb 5 17:21:12 2010 -0500
76
-
77
- bug: fix mispelling of 'dotprogress'
78
-
79
- commit 72b6944665235c8ca562e269ffa3f473e8fec8ff
80
- Author: 7rans <transfire@gmail.com>
81
- Date: Fri Feb 5 17:20:39 2010 -0500
82
-
83
- bug: pass +pattern+ argument
84
-
85
- commit dcbf8ce7054d522b0726aaa19657d97e0f3827e2
86
- Author: 7rans <transfire@gmail.com>
87
- Date: Fri Feb 5 17:08:39 2010 -0500
88
-
89
- minor: need bin/qedoc and minor adjustments to lib/qed/command.rb
90
-
91
- commit 15797ce9b295b82948c596ce7b8c334b246174bf
92
- Author: 7rans <transfire@gmail.com>
93
- Date: Fri Feb 5 17:07:51 2010 -0500
94
-
95
- major: support global environment helper
96
-
97
- commit fcd4283c83b8f4b99931bb60dbce170529558729
98
- Author: 7rans <transfire@gmail.com>
99
- Date: Fri Feb 5 17:07:09 2010 -0500
100
-
101
- major: support global environment helper
102
-
103
- commit 52f8edfcf411025e0172e14e6b57a3a9f6f2f39a
104
- Author: 7rans <transfire@gmail.com>
105
- Date: Fri Feb 5 17:06:10 2010 -0500
106
-
107
- minor: split adivce into two parts (events and patterns)
108
-
109
- commit a6941ce0f0d0e23cfca70c4f2124e0f0993e7533
110
- Author: 7rans <transfire@gmail.com>
111
- Date: Fri Feb 5 17:05:57 2010 -0500
112
-
113
- minor: split adivce into two parts (events and patterns)
114
-
115
- commit dc42e2e8243c7d9fa2ee5c9e759f9138e66048e1
116
- Author: 7rans <transfire@gmail.com>
117
- Date: Fri Feb 5 17:04:35 2010 -0500
118
-
119
- minor: update reporters to work with new design
120
-
121
- commit 418c4565fe4e1dcf0af2f2735d2a0d15c098164a
122
- Author: 7rans <transfire@gmail.com>
123
- Date: Fri Feb 5 17:03:41 2010 -0500
124
-
125
- admin: working on config options
126
-
127
- commit ef883cc99d9fab053c5e43ae666a3236e39be975
128
- Author: 7rans <transfire@gmail.com>
129
- Date: Fri Feb 5 17:03:09 2010 -0500
130
-
131
- minor: move doc libs to lib/qedoc and use Tilt
132
-
133
- commit 6608f9a9682b4dd466e276287498e633fa62a77c
134
- Author: 7rans <transfire@gmail.com>
135
- Date: Wed Feb 3 13:14:25 2010 -0500
136
-
137
- admin: add work/DIARY for on-going thoughts
138
-
139
- commit 2b71085afee6f54ce462e1361b7e280cb27923e6
140
- Author: 7rans <transfire@gmail.com>
141
- Date: Wed Feb 3 13:07:06 2010 -0500
142
-
143
- major: overhaul demo evaluation (part of 2.0 switch to HTML)
144
-
145
- commit 03aa7cdc8f04987afd662cf530a3e31d0fd01bf9
146
- Author: 7rans <transfire@gmail.com>
147
- Date: Fri Jan 29 23:04:00 2010 -0500
148
-
149
- major: rename reporter methods
150
-
151
- commit 2e9d37b48ada4658657aca39fb2fd6b99d4e8bdb
152
- Author: 7rans <transfire@gmail.com>
153
- Date: Fri Jan 29 23:03:04 2010 -0500
154
-
155
- major: rename Runner to Session and Summary reporter to BulletPoint
156
-
157
- commit dff4f557f2aea5f56472540c406a714c96f3b5e3
158
- Author: 7rans <transfire@gmail.com>
159
- Date: Fri Jan 29 19:24:08 2010 -0500
160
-
161
- minor: move some functionality from Runner to Script
162
-
163
- commit 77e20b6164722f128700e4e15a7f04fe211261d3
164
- Author: 7rans <transfire@gmail.com>
165
- Date: Fri Jan 29 19:22:40 2010 -0500
166
-
167
- minor: remove :script format option
168
-
169
- commit 90d4dbfb1211297e59e86c171c9cb8afe1c36127
170
- Author: 7rans <transfire@gmail.com>
171
- Date: Fri Jan 29 10:25:48 2010 -0500
172
-
173
- doc: whitey website
174
-
175
- commit 7d35802c867edb11505b97e28166739606a22ca2
176
- Author: 7rans <transfire@gmail.com>
177
- Date: Fri Jan 29 09:14:52 2010 -0500
178
-
179
- admin: bump version to 2.0
180
-
181
- commit 026eb5776eaa1c990abe517a36ff4eeb17287de2
182
- Author: 7rans <transfire@gmail.com>
183
- Date: Fri Jan 29 09:10:01 2010 -0500
184
-
185
- minor: use clean_backtrace method
186
-
187
- commit 2eebded5d629be0d2a24d324a2f0d49633286a2d
188
- Author: 7rans <transfire@gmail.com>
189
- Date: Fri Jan 29 09:09:15 2010 -0500
190
-
191
- minor: default demo location is demo(s)/ or test/demo(s)/
192
-
193
- commit acb6d484937fa3c264f079e473a0b0bcfea86af1
194
- Author: 7rans <transfire@gmail.com>
195
- Date: Fri Jan 29 09:07:59 2010 -0500
196
-
197
- admin: moved website example to exp/ directory
198
-
199
- commit 8f1c4741b3de0b55746c45d545603b8c34f634e5
200
- Author: 7rans <transfire@gmail.com>
201
- Date: Fri Jan 29 07:00:31 2010 -0500
202
-
203
- major: process demos in HTML
204
-
205
- commit 4a3271f2bea320548b45a73613e3c43faddf611b
206
- Author: 7rans <transfire@gmail.com>
207
- Date: Thu Jan 28 10:19:28 2010 -0500
208
-
209
- .config/profiles.yaml works like cucumbers
210
-
211
- commit cc59751b8a47ec40300a16c7b99a3b92af9fad61
212
- Author: 7rans <transfire@gmail.com>
213
- Date: Thu Jan 28 10:17:03 2010 -0500
214
-
215
- major: overhauled environement and helper loading
216
- * helpers are per-script and stored in helper/ directories
217
- * environments are stored in .config/qed/env.
218
-
219
- commit f28c3ec03d009278ddec37812184e949971a0d73
220
- Author: 7rans <transfire@gmail.com>
221
- Date: Tue Jan 19 18:03:13 2010 -0500
222
-
223
- doc: major improvements to website
224
-
225
- commit 816bbe22acfa7e0ed82e107201bf22831850d757
226
- Author: 7rans <transfire@gmail.com>
227
- Date: Sun Jan 10 08:16:34 2010 -0500
228
-
229
- minor: improved <hr> doc style
230
-
231
- commit 1e64f45f5e991664f029f5d176686df6a7df1352
232
- Author: 7rans <transfire@gmail.com>
233
- Date: Sat Jan 9 23:00:18 2010 -0500
234
-
235
- bump version to 1.3
236
-
237
- commit 6d4dd9008ddf63e6eea7a595c39ac62ebc4b8794
238
- Author: 7rans <transfire@gmail.com>
239
- Date: Sat Jan 9 23:00:04 2010 -0500
240
-
241
- admin: add script for generating qed docs
242
-
243
- commit ee51def340738aaf29b0b5f976eb7111348dea81
244
- Author: 7rans <transfire@gmail.com>
245
- Date: Sat Jan 9 22:52:06 2010 -0500
246
-
247
- admin: replace task/*.syckle with Syckfile
248
-
249
- commit 47a34edf49a419d1e3713ec05e6a55d7f73bc9f3
250
- Author: 7rans <transfire@gmail.com>
251
- Date: Sat Jan 9 21:46:45 2010 -0500
252
-
253
- admin: add sample profile
254
-
255
- commit 25c86127d556bb63633cd1c6754dac5542bb47dd
256
- Author: 7rans <transfire@gmail.com>
257
- Date: Sat Jan 9 21:46:16 2010 -0500
258
-
259
- major: helpers are links to scripts, not code
260
-
261
- commit 3d61d762f2fa4f6d4829f03a474c3265144b665d
262
- Author: 7rans <transfire@gmail.com>
263
- Date: Sat Jan 9 21:44:33 2010 -0500
264
-
265
- major: support for command profiles
266
-
267
- commit b1fd2b97732f1c4876b48ea5aadc095f92b4af71
268
- Author: 7rans <transfire@gmail.com>
269
- Date: Sat Jan 9 15:59:51 2010 -0500
270
-
271
- doc: improved demo comments
272
-
273
- commit 4f3d04c071e6dd4a00c138ee858d93aeef14a28e
274
- Author: 7rans <transfire@gmail.com>
275
- Date: Fri Dec 18 21:18:17 2009 -0500
276
-
277
- error/failure reports provide line number [minor]
278
-
279
- commit e95b304ee3b18a311ac5c4b2f46851426f18f5ad
280
- Author: 7rans <transfire@gmail.com>
281
- Date: Mon Dec 7 18:28:12 2009 -0500
282
-
283
- improved website colors [admin]
284
-
285
- commit 08a91965e97696175a2d87ad42771d6fd4ad25a7
286
- Author: 7rans <transfire@gmail.com>
287
- Date: Mon Dec 7 13:48:00 2009 -0500
288
-
289
- updated website and meta/description [admin]
290
-
291
- commit 0f95f76ef53644687afe3305a1a7698e18317c6b
292
- Author: 7rans <transfire@gmail.com>
293
- Date: Mon Dec 7 11:19:42 2009 -0500
294
-
295
- have to use gem rdoc until ruby includes latest version
296
-
297
- commit 154df76ae20c59657616b4835f7b5567aee15d58
298
- Author: 7rans <transfire@gmail.com>
299
- Date: Mon Dec 7 11:11:18 2009 -0500
300
-
301
- made mistake before, we are at version 1.2 [admin]
302
-
303
- commit 74f471becdecdf1c7f208c15c52f422892769d2d
304
- Author: 7rans <transfire@gmail.com>
305
- Date: Mon Dec 7 10:47:40 2009 -0500
306
-
307
- bumped version to 1.3
308
-
309
- commit 098085f7639da2f9c94471803b860c268a364a78
310
- Author: 7rans <transfire@gmail.com>
311
- Date: Mon Dec 7 10:46:50 2009 -0500
312
-
313
- adjusted verbatium error output
314
-
315
- commit f82c29c002f19e346a1bd12d05400fdca0924f96
316
- Author: 7rans <transfire@gmail.com>
317
- Date: Mon Dec 7 10:41:27 2009 -0500
318
-
319
- made verbatium reporter literally verbatium [minor]
320
-
321
- commit 62a9ee972e00ac97953ecb6afbe56d77dec8fa3a
322
- Author: 7rans <transfire@gmail.com>
323
- Date: Mon Dec 7 10:41:13 2009 -0500
324
-
325
- made verbatium reporter literally verbatium [minor]
326
-
327
- commit 6a6bdaff2545c8746d045faf02e83bc4d301e974
328
- Author: 7rans <transfire@gmail.com>
329
- Date: Mon Dec 7 09:53:32 2009 -0500
330
-
331
- switched to OptionParser [minor]
332
-
333
- commit ab81bb887bc358565704c1122dfa603864aa4c06
334
- Author: 7rans <transfire@gmail.com>
335
- Date: Mon Dec 7 00:13:59 2009 -0500
336
-
337
- Made overall improvements of spec syntax and behavior:
338
- * capitalized special QED methods
339
- * simplified Table lookup
340
- * renamed #fixture to #Data
341
-
342
- commit 3a94cc0cc577cfaf7a0d2eb8f18df5eb92b4a28d
343
- Author: 7rans <transfire@gmail.com>
344
- Date: Sat Dec 5 23:19:00 2009 -0500
345
-
346
- update README [admin]
347
-
348
- commit 209cbffa413d83a33e8292d421e7649f11b923b6
349
- Author: 7rans <transfire@gmail.com>
350
- Date: Sat Dec 5 23:18:09 2009 -0500
351
-
352
- added comment triggers [majort]
353
-
354
- commit 44806f760c6b7580a7b16bbb8278dc2f34ab7479
355
- Author: 7rans <transfire@gmail.com>
356
- Date: Sat Nov 14 09:48:03 2009 -0500
357
-
358
- use meta/name and meta/suite
359
-
360
- commit 6ad3d034c04aa574a119089d9e03aa747b32f39b
361
- Author: 7rans <transfire@gmail.com>
362
- Date: Sat Oct 24 15:44:53 2009 -0400
363
-
364
- add repository to metadata
365
-
366
- commit c6fddafdbd7bb36e27f60a07924be69fde9df2ff
367
- Author: 7rans <transfire@gmail.com>
368
- Date: Sat Oct 24 15:43:22 2009 -0400
369
-
370
- imporve support for bottom helper code
371
-
372
- commit 77c659897d44924487f1a1f24019996e800cccaf
373
- Author: 7rans <transfire@gmail.com>
374
- Date: Sat Oct 24 15:40:51 2009 -0400
375
-
376
- update metadata
377
-
378
- commit 75f75bc53d1d01ca9dd9d0a99d55ef3e4e8b7aab
379
- Author: 7rans <transfire@gmail.com>
380
- Date: Sat Oct 24 15:40:01 2009 -0400
381
-
382
- update site and syckle tasks
383
-
384
- commit c3080943d02d9927b2ae74b7a8aea5582fc246d9
385
- Author: trans <transfire@gmail.com>
386
- Date: Sat Sep 5 16:18:35 2009 -0400
387
-
388
- fixed spellings in README.rdoc
389
-
390
- commit db3fb84abb27d4850e73f073475a953f079b7e26
391
- Author: trans <transfire@gmail.com>
392
- Date: Sat Sep 5 15:26:38 2009 -0400
393
-
394
- prepare for first release
395
-
396
- commit 941ebcf1d063948a15f08a8553922eba8c6adac7
397
- Author: trans <transfire@gmail.com>
398
- Date: Sat Sep 5 15:08:46 2009 -0400
399
-
400
- fixed helper loading, plus cleanup
401
-
402
- commit fc2411490a910ec0bb4f679ae8884e22e8bb28e7
403
- Author: trans <transfire@gmail.com>
404
- Date: Sat Sep 5 13:33:52 2009 -0400
405
-
406
- fixed RDoc markup to use latest version
407
-
408
- commit 5a55b757e10537ad7e673b5fb420387893cda3ac
409
- Author: trans <transfire@gmail.com>
410
- Date: Fri Sep 4 11:57:33 2009 -0400
411
-
412
- added ansi to requirements
413
-
414
- commit 61182872ae20c073fbf865b26589c65aaa4f45e2
415
- Author: trans <transfire@gmail.com>
416
- Date: Fri Sep 4 11:56:51 2009 -0400
417
-
418
- updated README
419
-
420
- commit 303ab35cea15b8ffb7dff3074f19a5073f4122ce
421
- Author: trans <transfire@gmail.com>
422
- Date: Fri Sep 4 11:38:28 2009 -0400
423
-
424
- update metadata and tasks
425
-
426
- commit 4214020ab345400417d0a54a532c890d0c5faeec
427
- Author: trans <transfire@gmail.com>
428
- Date: Fri Sep 4 00:39:22 2009 -0400
429
-
430
- imporved loading of qed_helper.rb files
431
-
432
- commit e60209d198377f8d41179596c74633ddc7c41f28
433
- Author: trans <transfire@gmail.com>
434
- Date: Fri Sep 4 00:38:35 2009 -0400
435
-
436
- change rdoc template to hanna
437
-
438
- commit 7ab4c70a82359077a06641f6422646c9a7ca4f0e
439
- Author: trans <transfire@gmail.com>
440
- Date: Fri Sep 4 00:38:08 2009 -0400
441
-
442
- update metadata
443
-
444
- commit 0fe2c978e30ed4ce37ce93827bb443ea4839af96
445
- Author: trans <transfire@gmail.com>
446
- Date: Thu Sep 3 22:52:40 2009 -0400
447
-
448
- moved qedoc to doc
449
-
450
- commit 2e8ac3959aef1b3d5e26123fc339bb9513e95fbd
451
- Author: trans <transfire@gmail.com>
452
- Date: Thu Sep 3 22:49:28 2009 -0400
453
-
454
- Assertor is at toplevel now
455
-
456
- commit 8134cd72f5ae13331db5ea016a67d71945638c45
457
- Author: trans <transfire@gmail.com>
458
- Date: Thu Sep 3 22:48:44 2009 -0400
459
-
460
- chaged #should to #assert
461
-
462
- commit 3eb50c5a2894b5974eff547203565dfda08a2dfb
463
- Author: trans <transfire@gmail.com>
464
- Date: Thu Sep 3 22:48:11 2009 -0400
465
-
466
- added markdown and qed-markup support to documentor
467
-
468
- commit 160a25cee85cf0d6cd0aca2fd1ab535ef2b3c056
469
- Author: trans <transfire@gmail.com>
470
- Date: Thu Sep 3 22:46:41 2009 -0400
471
-
472
- support for qed_helper.rb
473
-
474
- commit cf1bd3ee3942d58334b1e4cb28de0860f1cd5d74
475
- Author: trans <transfire@gmail.com>
476
- Date: Thu Sep 3 22:46:16 2009 -0400
477
-
478
- support for qed_helper.rb
479
-
480
- commit 0007be7044f19fb041f763d66ab4405a3dd75581
481
- Author: trans <transfire@gmail.com>
482
- Date: Thu Sep 3 22:45:45 2009 -0400
483
-
484
- moved document.rb and related dir up a level
485
-
486
- commit 6ec21048ed3ec391b247ef14c14c2d25b2bc6000
487
- Author: trans <transfire@gmail.com>
488
- Date: Mon Aug 31 20:04:15 2009 -0400
489
-
490
- update README
491
-
492
- commit 75e8a05422d6cc42089afd4b38f3deee48a85260
493
- Author: trans <transfire@gmail.com>
494
- Date: Mon Aug 31 19:41:26 2009 -0400
495
-
496
- added meta/project
497
-
498
- commit 7cf2cd9f26b939f5c90e935cf9f52d4b5e05e0bc
499
- Author: trans <transfire@gmail.com>
500
- Date: Mon Aug 31 19:40:55 2009 -0400
501
-
502
- added reap tasks
503
-
504
- commit bc213aa2d1be0bed7fcf8b75738181a6179734ee
505
- Author: trans <transfire@gmail.com>
506
- Date: Mon Aug 31 19:40:35 2009 -0400
507
-
508
- added webisite
509
-
510
- commit fe030450a04fb8b4eb9dfe689c946f17742a1acb
511
- Author: trans <transfire@gmail.com>
512
- Date: Mon Aug 31 19:21:54 2009 -0400
513
-
514
- qed executable ignores .yaml files by default
515
-
516
- commit b8d9887c41bc49a131361576e94d3c8741ebc2d6
517
- Author: trans <transfire@gmail.com>
518
- Date: Mon Aug 31 19:21:03 2009 -0400
519
-
520
- table name defaults to names of invoking script with yaml extension
521
-
522
- commit 9170f8e47661ad3d9b13b44f3afed972c9c4e1ea
523
- Author: trans <transfire@gmail.com>
524
- Date: Mon Aug 31 19:19:35 2009 -0400
525
-
526
- use io object fro reporters
527
-
528
- commit 35be756433f34ee1f1304413c0d38361248e6620
529
- Author: trans <transfire@gmail.com>
530
- Date: Mon Aug 31 19:18:38 2009 -0400
531
-
532
- improved qedoc generation
533
-
534
- commit bf45b7688a8356be0b93cbdae1bf787c075965ed
535
- Author: trans <transfire@gmail.com>
536
- Date: Mon Aug 17 14:27:12 2009 -0400
537
-
538
- updated HISTORY
539
-
540
- commit 4e6a744fc1cdcb7b159593f4704ec9776ee34928
541
- Author: trans <transfire@gmail.com>
542
- Date: Mon Aug 17 14:23:27 2009 -0400
543
-
544
- adjected requires for using AE
545
-
546
- commit ef50ae641ef0c4402d99dd2496e229ff58fb3cc2
547
- Author: trans <transfire@gmail.com>
548
- Date: Sat Aug 15 20:59:35 2009 -0400
549
-
550
- renamed from Repsect to QED
551
-
552
- commit 7aca7b2becc3b4b4ea95386e532ea6466993f7fa
553
- Merge: 6132e6d... 00c3f50...
554
- Author: trans <transfire@gmail.com>
555
- Date: Tue Jun 30 18:15:22 2009 -0400
556
-
557
- Merge branch 'master' of git@github.com:trans/respect
558
-
559
- commit 6132e6dc74193b2a434e4d4e4aed4d47ab653826
560
- Author: trans <transfire@gmail.com>
561
- Date: Tue Jun 30 18:13:50 2009 -0400
562
-
563
- update metadata
564
-
565
- commit 00c3f507100820cf94da82894c3c98dc93a98138
566
- Author: T. Sawyer <trans@di1525.(none)>
567
- Date: Tue Jun 23 20:37:39 2009 -0400
568
-
569
- added links to README
570
-
571
- commit 3312f61fb4aa2e41c5a46bb8b7b855f078aa460a
572
- Author: T. Sawyer <trans@di1525.(none)>
573
- Date: Tue Jun 23 20:36:37 2009 -0400
574
-
575
- table() method fixed
576
-
577
- commit acef38a9c9527455ef41f49c64f061b8080e7a10
578
- Author: T. Sawyer <trans@di1525.(none)>
579
- Date: Sat Jun 20 13:58:47 2009 -0400
580
-
581
- renamed README.rd to README.rdoc
582
-
583
- commit 08a8caf0a710b4377f961fc5ac4006d8b8e51794
584
- Author: T. Sawyer <trans@di1525.(none)>
585
- Date: Fri Jun 19 23:00:58 2009 -0400
586
-
587
- script.rb, last step was being dropped, now fixed.
588
-
589
- commit 7d74fdd9d92509668ea86ad6628f076ec75314eb
590
- Author: T. Sawyer <trans@di1525.(none)>
591
- Date: Fri Jun 19 18:57:42 2009 -0400
592
-
593
- renamed README to README.rd
594
-
595
- commit b4c2e00ca59080c4b7b68b5f1f5b536e50380c8e
596
- Author: T. Sawyer <trans@di1525.(none)>
597
- Date: Fri Jun 19 09:11:29 2009 -0400
598
-
599
- don't run *.rb files when running specs
600
-
601
- commit f8aefb649f31fbbbc95a904974835dc9da4c7c27
602
- Author: T. Sawyer <trans@di1525.(none)>
603
- Date: Fri Jun 19 09:10:30 2009 -0400
604
-
605
- added/fixed respec-doc command
606
-
607
- commit 0698342394bfef6060f61586f1c443bf55b27bb3
608
- Author: T. Sawyer <trans@di1525.(none)>
609
- Date: Fri Jun 19 09:08:49 2009 -0400
610
-
611
- change name from Quarry to Respect in specs
612
-
613
- commit 7e0ae0e9aa734647924bd7e7e0c7da838daf054e
614
- Author: T. Sawyer <trans@di1525.(none)>
615
- Date: Thu Jun 18 19:02:09 2009 -0400
616
-
617
- fixed header reporting (rdoc format)
618
-
619
- commit ac44d1e2573dc9d2ae65e5b6decb3ec2be205916
620
- Author: T. Sawyer <trans@di1525.(none)>
621
- Date: Thu Jun 18 19:00:22 2009 -0400
622
-
623
- bin/respect, load all spec files under given directory
624
-
625
- commit 211a41243489125f448b9fe07b7308d3fb1b01d6
626
- Author: T. Sawyer <trans@di1525.(none)>
627
- Date: Wed Jun 17 21:14:58 2009 -0400
628
-
629
- added specs
630
-
631
- commit 20144625ff64e0eba14d84aab53748667b2ce796
632
- Author: T. Sawyer <trans@di1525.(none)>
633
- Date: Wed Jun 17 21:14:23 2009 -0400
634
-
635
- fixed step spliting routine
636
-
637
- commit b7f000d805d01865d4246dc9f3075736d444ed53
638
- Author: T. Sawyer <trans@di1525.(none)>
639
- Date: Wed Jun 17 21:13:07 2009 -0400
640
-
641
- added .gitignore
642
-
643
- commit 0719c9d5ff6172c45d8bd678737eaed4798550a4
644
- Author: T. Sawyer <trans@di1525.(none)>
645
- Date: Tue Jun 16 11:19:41 2009 -0400
646
-
647
- initial commit