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.
@@ -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.given_error
69
- error.set_backtrace(::Spec::Matchers.given_error.backtrace)
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 @given_error
110
- ::Spec::Matchers.given_error = @given_error
109
+ if @actual_error
110
+ ::Spec::Matchers.rasta_error = @actual_error
111
111
  else
112
- ::Spec::Matchers.given_error = nil
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 :given_error
127
+ attr_accessor :rasta_error
128
128
  end
129
129
  end
130
130
  end
@@ -1,6 +1,6 @@
1
1
  module Rasta
2
2
  module VERSION
3
- STRING = '0.1.9'
3
+ STRING = '0.1.10'
4
4
  FULL_VERSION = "#{STRING}" #may add subversions here later
5
5
  NAME = "rasta"
6
6
  URL = "http://rasta.rubyforge.org/"
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.9
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-02-18 00:00:00 -06:00
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.9: Ruby Spreadsheet Test Automation http://rasta.rubyforge.org/"
96
+ summary: "rasta-0.1.10: Ruby Spreadsheet Test Automation http://rasta.rubyforge.org/"
97
97
  test_files: []
98
98