shindo 0.3.5 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/shindo.rb +3 -2
- data/shindo.gemspec +2 -2
- metadata +3 -5
data/lib/shindo.rb
CHANGED
@@ -5,7 +5,7 @@ module Shindo
|
|
5
5
|
class Pending < StandardError; end
|
6
6
|
|
7
7
|
unless const_defined?(:VERSION)
|
8
|
-
VERSION = '0.3.
|
8
|
+
VERSION = '0.3.6'
|
9
9
|
end
|
10
10
|
|
11
11
|
def self.tests(description = nil, tags = [], &block)
|
@@ -33,6 +33,7 @@ module Shindo
|
|
33
33
|
@unless_tagged << tag[1..-1]
|
34
34
|
end
|
35
35
|
end
|
36
|
+
@pending = nil
|
36
37
|
Formatador.display_line
|
37
38
|
tests(description, tags, &block)
|
38
39
|
end
|
@@ -130,7 +131,7 @@ module Shindo
|
|
130
131
|
instance_eval(&block)
|
131
132
|
rescue Shindo::Pending
|
132
133
|
@pending = true
|
133
|
-
rescue => error
|
134
|
+
rescue Exception => error
|
134
135
|
error
|
135
136
|
end
|
136
137
|
[value, value.is_a?(expectation)]
|
data/shindo.gemspec
CHANGED
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
14
14
|
## the sub! line in the Rakefile
|
15
15
|
s.name = 'shindo'
|
16
|
-
s.version = '0.3.
|
17
|
-
s.date = '
|
16
|
+
s.version = '0.3.6'
|
17
|
+
s.date = '2013-06-18'
|
18
18
|
s.rubyforge_project = 'shindo'
|
19
19
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shindo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-06-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: formatador
|
@@ -70,9 +70,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
70
|
- - ! '>='
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: '0'
|
73
|
-
segments:
|
74
|
-
- 0
|
75
|
-
hash: -213069165045248108
|
76
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
74
|
none: false
|
78
75
|
requirements:
|
@@ -86,3 +83,4 @@ signing_key:
|
|
86
83
|
specification_version: 2
|
87
84
|
summary: Simple depth first Ruby testing.
|
88
85
|
test_files: []
|
86
|
+
has_rdoc:
|