test-loop 1.0.0 → 1.0.1
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/README.md +2 -2
- data/bin/test-loop +1 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Features
|
|
|
24
24
|
* Supports Test::Unit, RSpec, or any other testing framework that is utilized
|
|
25
25
|
by your application's `test/test_helper.rb` and `spec/spec_helper.rb` files.
|
|
26
26
|
|
|
27
|
-
* Implemented in less than
|
|
27
|
+
* Implemented in less than 40 (SLOC) lines of code! :-)
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
Installation
|
|
@@ -48,7 +48,7 @@ If installed as a Ruby gem:
|
|
|
48
48
|
|
|
49
49
|
If installed as a Git clone:
|
|
50
50
|
|
|
51
|
-
ruby
|
|
51
|
+
ruby bin/test-loop
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
Operation
|
data/bin/test-loop
CHANGED
|
@@ -6,7 +6,7 @@ overhead_file_glob = '{test,spec}/*_helper.rb'
|
|
|
6
6
|
$LOAD_PATH.unshift 'lib' # for non-Rails applications
|
|
7
7
|
|
|
8
8
|
Dir[overhead_file_glob].each do |file|
|
|
9
|
-
$LOAD_PATH.
|
|
9
|
+
$LOAD_PATH.insert 1, file.pathmap('%d')
|
|
10
10
|
require file.pathmap('%n')
|
|
11
11
|
end
|
|
12
12
|
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Suraj N. Kurapati
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-10-
|
|
17
|
+
date: 2010-10-16 00:00:00 -07:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies: []
|
|
20
20
|
|