All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ext.coverage.CoverageLibrary Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
package org.jruby.ext.coverage;

import org.jruby.Ruby;
import org.jruby.RubyModule;
import org.jruby.runtime.load.Library;

public class CoverageLibrary implements Library {
    public void load(Ruby runtime, boolean wrap) {
        RubyModule coverage = runtime.defineModule("Coverage");
        
        coverage.defineAnnotatedMethods(CoverageModule.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy