autotest-standalone 4.5.8 → 4.5.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,30 +1,24 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- diff-lcs (1.1.2)
5
- gemcutter (0.6.1)
4
+ diff-lcs (1.1.3)
6
5
  git (1.2.5)
7
- jeweler (1.4.0)
8
- gemcutter (>= 0.1.0)
6
+ jeweler (1.6.4)
7
+ bundler (~> 1.0)
9
8
  git (>= 1.2.5)
10
- rubyforge (>= 2.0.0)
11
- json_pure (1.4.6)
12
- parallel (0.5.1)
13
- parallel_tests (0.4.7)
9
+ rake
10
+ parallel (0.5.11)
11
+ parallel_tests (0.6.11)
14
12
  parallel
15
- rake (0.8.7)
16
- rspec (2.0.1)
17
- rspec-core (~> 2.0.1)
18
- rspec-expectations (~> 2.0.1)
19
- rspec-mocks (~> 2.0.1)
20
- rspec-core (2.0.1)
21
- rspec-expectations (2.0.1)
22
- diff-lcs (>= 1.1.2)
23
- rspec-mocks (2.0.1)
24
- rspec-core (~> 2.0.1)
25
- rspec-expectations (~> 2.0.1)
26
- rubyforge (2.0.4)
27
- json_pure (>= 1.1.7)
13
+ rake (0.9.2.2)
14
+ rspec (2.7.0)
15
+ rspec-core (~> 2.7.0)
16
+ rspec-expectations (~> 2.7.0)
17
+ rspec-mocks (~> 2.7.0)
18
+ rspec-core (2.7.1)
19
+ rspec-expectations (2.7.0)
20
+ diff-lcs (~> 1.1.2)
21
+ rspec-mocks (2.7.0)
28
22
  shoulda (2.11.3)
29
23
 
30
24
  PLATFORMS
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.5.8
1
+ 4.5.9
@@ -1,55 +1,47 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "autotest-standalone"
8
- s.version = "4.5.8"
8
+ s.version = "4.5.9"
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 = "2011-09-11"
12
+ s.date = "2011-12-15"
13
13
  s.executables = ["autotest", "unit_diff"]
14
14
  s.files = [
15
15
  ".autotest",
16
- ".gitignore",
17
- "Gemfile",
18
- "Gemfile.lock",
19
- "History.txt",
20
- "Rakefile",
21
- "Readme.md",
22
- "VERSION",
23
- "articles/getting_started_with_autotest.html",
24
- "autotest-standalone.gemspec",
25
- "bin/autotest",
26
- "bin/unit_diff",
27
- "example_dot_autotest.rb",
28
- "lib/autotest.rb",
29
- "lib/autotest/autoupdate.rb",
30
- "lib/autotest/bundler.rb",
31
- "lib/autotest/notify.rb",
32
- "lib/autotest/once.rb",
33
- "lib/autotest/rcov.rb",
34
- "lib/autotest/restart.rb",
35
- "lib/autotest/timestamp.rb",
36
- "lib/unit_diff.rb",
37
- "test/helper.rb",
38
- "test/test_autotest.rb",
39
- "test/test_autotest_integration.rb",
40
- "test/test_unit_diff.rb"
16
+ "Gemfile",
17
+ "Gemfile.lock",
18
+ "History.txt",
19
+ "Rakefile",
20
+ "Readme.md",
21
+ "VERSION",
22
+ "articles/getting_started_with_autotest.html",
23
+ "autotest-standalone.gemspec",
24
+ "bin/autotest",
25
+ "bin/unit_diff",
26
+ "example_dot_autotest.rb",
27
+ "lib/autotest.rb",
28
+ "lib/autotest/autoupdate.rb",
29
+ "lib/autotest/bundler.rb",
30
+ "lib/autotest/notify.rb",
31
+ "lib/autotest/once.rb",
32
+ "lib/autotest/rcov.rb",
33
+ "lib/autotest/restart.rb",
34
+ "lib/autotest/timestamp.rb",
35
+ "lib/unit_diff.rb",
36
+ "test/helper.rb",
37
+ "test/test_autotest.rb",
38
+ "test/test_autotest_integration.rb",
39
+ "test/test_unit_diff.rb"
41
40
  ]
42
41
  s.homepage = "http://github.com/grosser/autotest"
43
- s.rdoc_options = ["--charset=UTF-8"]
44
42
  s.require_paths = ["lib"]
45
43
  s.rubygems_version = "1.8.10"
46
44
  s.summary = "Autotest, without ZenTest"
47
- s.test_files = [
48
- "test/test_autotest_integration.rb",
49
- "test/test_unit_diff.rb",
50
- "test/test_autotest.rb",
51
- "test/helper.rb"
52
- ]
53
45
 
54
46
  if s.respond_to? :specification_version then
55
47
  s.specification_version = 3
@@ -75,7 +75,13 @@ class UnitDiff
75
75
  output.puts line
76
76
  chars = []
77
77
  while c = input.getc do
78
- output.putc c
78
+ begin
79
+ output.putc c
80
+ rescue Errno::EINVAL
81
+ # weird bug that only happens on some windows machines
82
+ # <-> using print does not show color on windows
83
+ output.print c
84
+ end
79
85
  chars << c
80
86
  tail = chars[-term_length..-1]
81
87
  break if chars.size >= term_length and tail == term
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autotest-standalone
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.8
4
+ version: 4.5.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2011-09-11 00:00:00.000000000Z
13
+ date: 2011-12-15 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description:
16
16
  email:
@@ -21,7 +21,6 @@ extensions: []
21
21
  extra_rdoc_files: []
22
22
  files:
23
23
  - .autotest
24
- - .gitignore
25
24
  - Gemfile
26
25
  - Gemfile.lock
27
26
  - History.txt
@@ -49,8 +48,7 @@ files:
49
48
  homepage: http://github.com/grosser/autotest
50
49
  licenses: []
51
50
  post_install_message:
52
- rdoc_options:
53
- - --charset=UTF-8
51
+ rdoc_options: []
54
52
  require_paths:
55
53
  - lib
56
54
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -61,7 +59,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
61
59
  version: '0'
62
60
  segments:
63
61
  - 0
64
- hash: -454823313
62
+ hash: -115154609
65
63
  required_rubygems_version: !ruby/object:Gem::Requirement
66
64
  none: false
67
65
  requirements:
@@ -74,8 +72,4 @@ rubygems_version: 1.8.10
74
72
  signing_key:
75
73
  specification_version: 3
76
74
  summary: Autotest, without ZenTest
77
- test_files:
78
- - test/test_autotest_integration.rb
79
- - test/test_unit_diff.rb
80
- - test/test_autotest.rb
81
- - test/helper.rb
75
+ test_files: []
data/.gitignore DELETED
@@ -1 +0,0 @@
1
- pkg