Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
virtual / lib / virtual / method.rb
Size: Mime:
module Virtual
  module Method
    def self.define(target_class, method_name, &blk)
      blk ||= proc do |*|
      end

      target_class.send :define_method, method_name, &blk
    end
  end
end