evt-virtual 2.1.0.0 → 2.1.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b99fa347649061dabcb64bea008a1d50ca99c018bcc26dc1bb95dcb3e7983fe
4
- data.tar.gz: 78cfbfb5718dd2b60cff7011521c37bc8dab18a90d433ffd65e367d51be58c47
3
+ metadata.gz: f6662863fd1f00fce7e29762bbb90374a665aed3bacee8d03adefbc00a979106
4
+ data.tar.gz: ad9c52104ea94a6544db859c2116c51a493adea5b9fb9ef6a69a8e67a0518c30
5
5
  SHA512:
6
- metadata.gz: 18bb8c29bff1bfeef525735b2369250c3c177219d63aaac860aaa9debfa69c25aa43f8abe53c6dddf3e19a1a8bc8d79dd1b868bf2fc424404a4e011c772e15f5
7
- data.tar.gz: e723b840b59c4065fcf05757b3adfcf6626b05c44fd81258a99b7ac64637585fa34f293c0f55946ce044c8527d40011e05e8c6a65f3e6e90771ac98c05172c94
6
+ metadata.gz: d155de3f56f40917267bb11370b9b2256c1dd8a4c56ba9cc02f2507e2ac1a755d8ffa4fc9e12a877f911ad996a3722fcc9a178cce5260827725c68cd1e3f5b6a
7
+ data.tar.gz: 9130654ba416929932327dd25be927b7ab9ed4337a13038d8b5607232f8a3d36b81816a12a102213c7fa6b07b6ce60b4bdf848db3c2360c12fd32942bc395241
@@ -3,10 +3,6 @@ module Virtual
3
3
  Error = Class.new(RuntimeError)
4
4
 
5
5
  def self.define(target_class, method_name)
6
- if target_class.method_defined?(method_name)
7
- raise Error, "#{target_class} already has an implementation of the #{method_name} method"
8
- end
9
-
10
6
  target_class.send(:define_method, method_name) do |*args|
11
7
  raise Error, "Pure virtual (abstract) method #{method_name} of #{self.class.name} must be implemented"
12
8
  end
@@ -3,10 +3,6 @@ module Virtual
3
3
  Error = Class.new(RuntimeError)
4
4
 
5
5
  def self.define(target_class, method_name, &blk)
6
- if target_class.method_defined?(method_name)
7
- raise Error, "#{target_class} already has an implementation of the #{method_name} method"
8
- end
9
-
10
6
  blk ||= proc do |*|
11
7
  end
12
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evt-virtual
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0.0
4
+ version: 2.1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Eventide Project