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

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

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.jruby.libraries;

import java.io.IOException;

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

/**
 *
 * @author enebo
 */
public class TempfileLibrary implements Library {
    public void load(Ruby runtime, boolean wrap) throws IOException {
        RubyTempfile.createTempfileClass(runtime);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy