riot 0.10.8 → 0.10.9

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/riot/assertion.rb +3 -3
  3. data/riot.gemspec +1 -1
  4. metadata +1 -1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.10.8
1
+ 0.10.9
@@ -5,7 +5,7 @@ module Riot
5
5
  super
6
6
  @expectings, @expect_exception, @expectation_block = [], false, nil
7
7
  @assertion_block = lambda do |actual|
8
- actual ? Assertion.pass : Assertion.fail("Expected non-false but got #{actual.inspect} instead")
8
+ actual ? self.class.pass : self.class.fail("Expected non-false but got #{actual.inspect} instead")
9
9
  end
10
10
  end
11
11
 
@@ -22,7 +22,7 @@ module Riot
22
22
  class_eval <<-EOC
23
23
  def #{name}(*expectings, &expectation_block)
24
24
  @expectings, @expectation_block = expectings, expectation_block
25
- @expect_exception, @assertion_block = Assertion.assertions[#{name.inspect}]
25
+ @expect_exception, @assertion_block = self.class.assertions[#{name.inspect}]
26
26
  self
27
27
  end
28
28
  EOC
@@ -39,7 +39,7 @@ module Riot
39
39
  actual = situation.evaluate(&definition)
40
40
  yield(expect_exception ? nil : actual)
41
41
  rescue Exception => e
42
- expect_exception ? yield(e) : Assertion.error(e)
42
+ expect_exception ? yield(e) : self.class.error(e)
43
43
  end
44
44
  end # Assertion
45
45
  end # Riot
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{riot}
8
- s.version = "0.10.8"
8
+ s.version = "0.10.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin 'Gus' Knowlden"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: riot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.8
4
+ version: 0.10.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin 'Gus' Knowlden