remarkable 3.0.7 → 3.0.8

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.
@@ -17,8 +17,9 @@ module Remarkable
17
17
  it {
18
18
  begin
19
19
  send(should_or_should_not, send(method, *args, &block))
20
- rescue Exception => e
21
- e.set_backtrace(calltrace.to_a)
20
+ rescue Exception => e
21
+ trace = e.backtrace.to_a + calltrace.to_a
22
+ e.set_backtrace(trace)
22
23
  raise e
23
24
  end
24
25
  }
@@ -1,3 +1,3 @@
1
1
  module Remarkable
2
- VERSION = '3.0.7' unless self.const_defined?('VERSION')
2
+ VERSION = '3.0.8' unless self.const_defined?('VERSION')
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remarkable
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.7
4
+ version: 3.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Brando
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-04-22 00:00:00 +02:00
13
+ date: 2009-04-24 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -39,9 +39,7 @@ files:
39
39
  - README
40
40
  - LICENSE
41
41
  - CHANGELOG
42
- - lib/remarkable
43
42
  - lib/remarkable/pending.rb
44
- - lib/remarkable/dsl
45
43
  - lib/remarkable/dsl/assertions.rb
46
44
  - lib/remarkable/dsl/optionals.rb
47
45
  - lib/remarkable/dsl/matches.rb
@@ -53,13 +51,14 @@ files:
53
51
  - lib/remarkable/macros.rb
54
52
  - lib/remarkable/version.rb
55
53
  - lib/remarkable/matchers.rb
56
- - lib/remarkable/core_ext
57
54
  - lib/remarkable/core_ext/array.rb
58
55
  - lib/remarkable/messages.rb
59
56
  - lib/remarkable.rb
60
57
  - locale/en.yml
61
58
  has_rdoc: true
62
59
  homepage: http://github.com/carlosbrando/remarkable
60
+ licenses: []
61
+
63
62
  post_install_message:
64
63
  rdoc_options: []
65
64
 
@@ -80,16 +79,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
79
  requirements: []
81
80
 
82
81
  rubyforge_project: remarkable
83
- rubygems_version: 1.3.1
82
+ rubygems_version: 1.3.2
84
83
  signing_key:
85
- specification_version: 2
84
+ specification_version: 3
86
85
  summary: "Remarkable: a framework for rspec matchers, with support to macros and I18n."
87
86
  test_files:
88
- - spec/dsl
89
87
  - spec/dsl/optionals_spec.rb
90
88
  - spec/dsl/assertions_spec.rb
91
89
  - spec/messages_spec.rb
92
- - spec/locale
93
90
  - spec/locale/pt-BR.yml
94
91
  - spec/locale/en.yml
95
92
  - spec/i18n_spec.rb
@@ -98,7 +95,6 @@ test_files:
98
95
  - spec/macros_spec.rb
99
96
  - spec/spec.opts
100
97
  - spec/pending_spec.rb
101
- - spec/matchers
102
98
  - spec/matchers/be_a_person_matcher.rb
103
99
  - spec/matchers/contain_matcher.rb
104
100
  - spec/matchers/collection_contain_matcher.rb