guillaumegentil-rspactor 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/lib/resulting.rb +6 -3
  3. data/rspactor.gemspec +4 -4
  4. metadata +3 -3
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rspactor', '0.2.7') do |p|
5
+ Echoe.new('rspactor', '0.2.8') do |p|
6
6
  p.description = "RSpactor is a little command line tool to automatically run your changed specs (much like autotest)."
7
7
  p.url = "http://github.com/guillaumegentil/rspactor/"
8
8
  p.author = "Andreas Wolff"
data/lib/resulting.rb CHANGED
@@ -12,8 +12,8 @@ class RSpactorFormatter
12
12
 
13
13
  def start(example_count)
14
14
  end
15
-
16
- def add_example_group(example_group)
15
+
16
+ def example_group_started(example_group)
17
17
  end
18
18
 
19
19
  def example_started(example)
@@ -25,7 +25,7 @@ class RSpactorFormatter
25
25
  def example_failed(example, counter, failure)
26
26
  end
27
27
 
28
- def example_pending(example_group_description, example, message)
28
+ def example_pending(example, message, deprecated_pending_location=nil)
29
29
  end
30
30
 
31
31
  def start_dump
@@ -33,6 +33,9 @@ class RSpactorFormatter
33
33
 
34
34
  def dump_failure(counter, failure)
35
35
  end
36
+
37
+ def dump_summary(duration, example_count, failure_count, pending_count)
38
+ end
36
39
 
37
40
  def dump_pending
38
41
  end
data/rspactor.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rspactor}
5
- s.version = "0.2.7"
5
+ s.version = "0.2.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Andreas Wolff"]
9
- s.date = %q{2009-04-08}
9
+ s.date = %q{2009-04-20}
10
10
  s.default_executable = %q{rspactor}
11
11
  s.description = %q{RSpactor is a little command line tool to automatically run your changed specs (much like autotest).}
12
12
  s.email = %q{treas@dynamicdudes.com}
@@ -18,12 +18,12 @@ Gem::Specification.new do |s|
18
18
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rspactor"]
19
19
  s.require_paths = ["lib"]
20
20
  s.rubyforge_project = %q{rspactor}
21
- s.rubygems_version = %q{1.3.1}
21
+ s.rubygems_version = %q{1.3.2}
22
22
  s.summary = %q{RSpactor is a little command line tool to automatically run your changed specs (much like autotest).}
23
23
 
24
24
  if s.respond_to? :specification_version then
25
25
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
26
- s.specification_version = 2
26
+ s.specification_version = 3
27
27
 
28
28
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
29
29
  s.add_runtime_dependency(%q<optiflag>, [">= 0"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guillaumegentil-rspactor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Wolff
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-08 00:00:00 -07:00
12
+ date: 2009-04-20 00:00:00 -07:00
13
13
  default_executable: rspactor
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -74,7 +74,7 @@ requirements: []
74
74
  rubyforge_project: rspactor
75
75
  rubygems_version: 1.2.0
76
76
  signing_key:
77
- specification_version: 2
77
+ specification_version: 3
78
78
  summary: RSpactor is a little command line tool to automatically run your changed specs (much like autotest).
79
79
  test_files: []
80
80