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

org.jruby.libraries.StringScannerLibrary Maven / Gradle / Ivy

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

import java.io.IOException;

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

/**
 * @author kscott
 *
 */
public class StringScannerLibrary implements Library {

	/**
	 * @see org.jruby.runtime.load.Library#load(org.jruby.Ruby)
	 */
	public void load(Ruby runtime, boolean wrap) throws IOException {
		RubyStringScanner.createScannerClass(runtime);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy