test-loop 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.md +2 -2
  2. data/bin/test-loop +1 -1
  3. 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 50 (SLOC) lines of code! :-)
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 -Ilib bin/test-loop
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.unshift file.pathmap('%d')
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
- - 0
9
- version: 1.0.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-15 00:00:00 -07:00
17
+ date: 2010-10-16 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies: []
20
20