Package org.jruby.ext.coverage

Source Code of org.jruby.ext.coverage.CoverageLibrary

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);
    }
}
TOP

Related Classes of org.jruby.ext.coverage.CoverageLibrary

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.