autotest-standalone 4.5.5 → 4.5.6

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.5.5
1
+ 4.5.6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{autotest-standalone}
8
- s.version = "4.5.5"
8
+ s.version = "4.5.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ryan Davis", "Michael Grosser"]
12
- s.date = %q{2011-02-04}
12
+ s.date = %q{2011-08-21}
13
13
  s.executables = ["autotest", "unit_diff"]
14
14
  s.files = [
15
15
  ".autotest",
@@ -42,13 +42,13 @@ Gem::Specification.new do |s|
42
42
  s.homepage = %q{http://github.com/grosser/autotest}
43
43
  s.rdoc_options = ["--charset=UTF-8"]
44
44
  s.require_paths = ["lib"]
45
- s.rubygems_version = %q{1.4.2}
45
+ s.rubygems_version = %q{1.6.2}
46
46
  s.summary = %q{Autotest, without ZenTest}
47
47
  s.test_files = [
48
48
  "test/test_autotest_integration.rb",
49
- "test/helper.rb",
49
+ "test/test_unit_diff.rb",
50
50
  "test/test_autotest.rb",
51
- "test/test_unit_diff.rb"
51
+ "test/helper.rb"
52
52
  ]
53
53
 
54
54
  if s.respond_to? :specification_version then
data/lib/autotest.rb CHANGED
@@ -78,7 +78,7 @@ class Autotest
78
78
 
79
79
  HOOKS = Hash.new { |h,k| h[k] = [] } #unfound keys are []
80
80
  unless defined? WINDOZE then
81
- WINDOZE = /mswin|mingw|windows/ =~ Config::CONFIG['host_os']
81
+ WINDOZE = /mswin|mingw|windows/ =~ RbConfig::CONFIG['host_os']
82
82
  SEP = WINDOZE ? '&' : ';'
83
83
  end
84
84
 
@@ -636,8 +636,8 @@ class Autotest
636
636
 
637
637
  def ruby
638
638
  ruby = ENV['RUBY']
639
- ruby ||= File.join(Config::CONFIG['bindir'],
640
- Config::CONFIG['ruby_install_name'])
639
+ ruby ||= File.join(RbConfig::CONFIG['bindir'],
640
+ RbConfig::CONFIG['ruby_install_name'])
641
641
 
642
642
  ruby.gsub! File::SEPARATOR, File::ALT_SEPARATOR if File::ALT_SEPARATOR
643
643
 
@@ -30,7 +30,7 @@ class TestAutotest < Test::Unit::TestCase
30
30
  end unless respond_to? :refute
31
31
  alias :deny :refute
32
32
 
33
- RUBY = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name']) unless defined? RUBY
33
+ RUBY = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name']) unless defined? RUBY
34
34
 
35
35
  def setup
36
36
  @test_class = 'TestBlah'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autotest-standalone
3
3
  version: !ruby/object:Gem::Version
4
- hash: 33
4
+ hash: 39
5
5
  prerelease:
6
6
  segments:
7
7
  - 4
8
8
  - 5
9
- - 5
10
- version: 4.5.5
9
+ - 6
10
+ version: 4.5.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Davis
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-02-04 00:00:00 +01:00
19
+ date: 2011-08-21 00:00:00 +02:00
20
20
  default_executable:
21
21
  dependencies: []
22
22
 
@@ -86,12 +86,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  requirements: []
87
87
 
88
88
  rubyforge_project:
89
- rubygems_version: 1.4.2
89
+ rubygems_version: 1.6.2
90
90
  signing_key:
91
91
  specification_version: 3
92
92
  summary: Autotest, without ZenTest
93
93
  test_files:
94
94
  - test/test_autotest_integration.rb
95
- - test/helper.rb
96
- - test/test_autotest.rb
97
95
  - test/test_unit_diff.rb
96
+ - test/test_autotest.rb
97
+ - test/helper.rb