rasta 0.1.8-x86-mswin32-60 → 0.1.9-x86-mswin32-60
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.
- data/lib/rasta/extensions/rspec_extensions.rb +2 -1
- data/lib/rasta/version.rb +1 -1
- metadata +4 -4
@@ -105,12 +105,13 @@ module Spec
|
|
105
105
|
class RaiseError
|
106
106
|
alias :old_matches? :matches?
|
107
107
|
def matches?(*args)
|
108
|
-
old_matches?(*args)
|
108
|
+
result = old_matches?(*args)
|
109
109
|
if @given_error
|
110
110
|
::Spec::Matchers.given_error = @given_error
|
111
111
|
else
|
112
112
|
::Spec::Matchers.given_error = nil
|
113
113
|
end
|
114
|
+
result
|
114
115
|
end
|
115
116
|
end
|
116
117
|
end
|
data/lib/rasta/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rasta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: x86-mswin32-60
|
6
6
|
authors:
|
7
7
|
- Hugh McGowan
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-02-18 00:00:00 -06:00
|
13
13
|
default_executable: rasta
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 1.1.
|
23
|
+
version: 1.1.12
|
24
24
|
version:
|
25
25
|
description: Rasta is a keyword-driven test framework using spreadsheets to drive test automation. It is loosely based on FIT - tables define test parameters which call your test fixture. As the test runs, the spreadsheet is updated with test results.
|
26
26
|
email: rasta@rubyforge.org
|
@@ -93,6 +93,6 @@ rubyforge_project: rasta
|
|
93
93
|
rubygems_version: 1.3.1
|
94
94
|
signing_key:
|
95
95
|
specification_version: 2
|
96
|
-
summary: "rasta-0.1.
|
96
|
+
summary: "rasta-0.1.9: Ruby Spreadsheet Test Automation http://rasta.rubyforge.org/"
|
97
97
|
test_files: []
|
98
98
|
|