Sha256: d50d559de8aa576741a7828d83015d4bcf7748ad67ebdcd7e257a6160014f93a
Contents?: true
Size: 1.37 KB
Versions: 16
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true module Contracts module Core def self.included(base) common(base) end def self.extended(base) common(base) end def self.common(base) base.extend(MethodDecorators) base.instance_eval do def functype(funcname) contracts = Engine.fetch_from(self).decorated_methods_for(:class_methods, funcname) if contracts.nil? "No contract for #{self}.#{funcname}" else "#{funcname} :: #{contracts[0]}" end end end # NOTE: Workaround for `defined?(super)` bug in ruby 1.9.2 # source: http://stackoverflow.com/a/11181685 # bug: https://bugs.ruby-lang.org/issues/6644 base.class_eval <<-RUBY, __FILE__, __LINE__ + 1 # TODO: deprecate # Required when contracts are included in global scope def Contract(*args) if defined?(super) super else self.class.Contract(*args) end end RUBY base.class_eval do def functype(funcname) contracts = Engine.fetch_from(self.class).decorated_methods_for(:instance_methods, funcname) if contracts.nil? "No contract for #{self.class}.#{funcname}" else "#{funcname} :: #{contracts[0]}" end end end end end end
Version data entries
16 entries across 16 versions & 5 rubygems