simple_test_runner 0.6.2-x86-linux → 0.6.5-x86-linux

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,9 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'fileutils'
3
3
 
4
- $: << File.expand_path(File.dirname(__FILE__) + "/../lib")
5
-
6
- require "simple_test_runner"
4
+ require "simple_test_runner/simple_test_runner"
7
5
 
8
6
  runner = SimpleTestRunner::TestRunner.new ARGV
9
7
  runner.run
@@ -1,12 +1,7 @@
1
- #!/home/jeff/.rvm/rubies/ruby-1.9.2-p0/bin/ruby
2
- require "rubygems"
3
- require "bundler/setup"
4
1
  require 'rb-inotify'
5
2
  require 'io/wait' # for io.ready?
6
3
 
7
- require 'runner_opts'
8
-
9
- # Bundler.require # See http://technotales.wordpress.com/2010/08/22/bundler-without-rails/
4
+ require 'simple_test_runner/runner_opts'
10
5
 
11
6
  # code originally swiped shamelessly from https://github.com/ewollesen/autotest-inotify/blob/master/lib/autotest/inotify.rb
12
7
  # Mostly morphed since then ...
@@ -1,3 +1,3 @@
1
1
  module SimpleTestRunner
2
- VERSION = "0.6.2"
2
+ VERSION = "0.6.5"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 2
9
- version: 0.6.2
8
+ - 5
9
+ version: 0.6.5
10
10
  platform: x86-linux
11
11
  authors:
12
12
  - Jeff Roush
@@ -48,8 +48,8 @@ files:
48
48
  - README.md
49
49
  - Rakefile
50
50
  - bin/simple_test_runner
51
- - lib/runner_opts.rb
52
- - lib/simple_test_runner.rb
51
+ - lib/simple_test_runner/runner_opts.rb
52
+ - lib/simple_test_runner/simple_test_runner.rb
53
53
  - lib/simple_test_runner/version.rb
54
54
  - simple_test_runner.gemspec
55
55
  has_rdoc: true