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    
Size: Mime:
module AsyncInvocation
  class Incorrect
    class Error < RuntimeError; end

    def self.method_missing(meth, *args)
      raise Error, "Incorrect invocation of async operation `#{meth}'. It does not return results. It must be called with a block argument."
    end
  end
end