rasta 0.1.9-x86-mswin32-60 → 0.1.10-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 +6 -6
- data/lib/rasta/version.rb +1 -1
- metadata +3 -3
@@ -65,8 +65,8 @@ module Spec
|
|
65
65
|
def example_finished(*args)
|
66
66
|
error = args[1]
|
67
67
|
if error
|
68
|
-
if ::Spec::Matchers.
|
69
|
-
error.set_backtrace(::Spec::Matchers.
|
68
|
+
if ::Spec::Matchers.rasta_error
|
69
|
+
error.set_backtrace(::Spec::Matchers.rasta_error.backtrace)
|
70
70
|
else
|
71
71
|
error.set_backtrace(nil)
|
72
72
|
end
|
@@ -106,10 +106,10 @@ module Spec
|
|
106
106
|
alias :old_matches? :matches?
|
107
107
|
def matches?(*args)
|
108
108
|
result = old_matches?(*args)
|
109
|
-
if @
|
110
|
-
::Spec::Matchers.
|
109
|
+
if @actual_error
|
110
|
+
::Spec::Matchers.rasta_error = @actual_error
|
111
111
|
else
|
112
|
-
::Spec::Matchers.
|
112
|
+
::Spec::Matchers.rasta_error = nil
|
113
113
|
end
|
114
114
|
result
|
115
115
|
end
|
@@ -124,7 +124,7 @@ require 'spec/matchers'
|
|
124
124
|
module Spec
|
125
125
|
module Matchers
|
126
126
|
class << self
|
127
|
-
attr_accessor :
|
127
|
+
attr_accessor :rasta_error
|
128
128
|
end
|
129
129
|
end
|
130
130
|
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.10
|
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-06-26 00:00:00 -05:00
|
13
13
|
default_executable: rasta
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -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.10: Ruby Spreadsheet Test Automation http://rasta.rubyforge.org/"
|
97
97
|
test_files: []
|
98
98
|
|