bryanlarsen-rubydoctest 1.1.0 → 1.1.1

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.
@@ -2,7 +2,7 @@ module Rubydoctest #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -149,6 +149,7 @@ module RubyDocTest
149
149
  end
150
150
  rescue EvaluationError => e
151
151
  err += 1
152
+ everything_passed = false
152
153
  status = ["ERR".center(4), :yellow]
153
154
  exception_text = e.original_exception.to_s.split("\n").join(newline)
154
155
  detail = format_color(
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "rubydoctest"
3
- s.version = "1.1.0"
3
+ s.version = "1.1.1"
4
4
 
5
5
  s.specification_version = 2 if s.respond_to? :specification_version=
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bryanlarsen-rubydoctest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Duane Johnson
@@ -70,6 +70,7 @@ files:
70
70
  - website/template.html.erb
71
71
  has_rdoc: true
72
72
  homepage: http://rubydoctest.rubyforge.org
73
+ licenses:
73
74
  post_install_message: |+
74
75
 
75
76
  rubydoctest comes as an executable that takes a file or directory:
@@ -98,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
99
  requirements: []
99
100
 
100
101
  rubyforge_project: rubydoctest
101
- rubygems_version: 1.2.0
102
+ rubygems_version: 1.3.5
102
103
  signing_key:
103
104
  specification_version: 2
104
105
  summary: Ruby version of Python's doctest tool, but a bit different.