synthesis 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -77,8 +77,11 @@ module Synthesis
77
77
 
78
78
  def ignore?(obj)
79
79
  ignored.include?(obj.class) ||
80
+ ignored.include?(obj.class.to_s) ||
80
81
  (obj.is_a?(Class) && ignored.include?(obj)) ||
82
+ (obj.is_a?(Class) && ignored.include?(obj.to_s)) ||
81
83
  (obj.is_a?(Module) && ignored.include?(obj)) ||
84
+ (obj.is_a?(Module) && ignored.include?(obj.to_s)) ||
82
85
  obj.is_a?(MOCK_OBJECT)
83
86
  end
84
87
 
@@ -1,6 +1,6 @@
1
1
  GEMSPEC =Gem::Specification.new do |s|
2
2
  s.name = 'synthesis'
3
- s.version = '0.2.7'
3
+ s.version = '0.2.8'
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.rubyforge_project = "synthesis"
6
6
  s.summary, s.description = 'A tool for verifying mock object assumptions'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: synthesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart Caborn, George Malamidis, Danilo Sato
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-20 00:00:00 +01:00
12
+ date: 2009-07-06 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies: []
15
15