Sha256: 76f95d4bd7b9a5429b71a16bdb361a2856833cbb56ac4c91e1a63b0bce6e394e

Contents?: true

Size: 1.85 KB

Versions: 78

Compression:

Stored size: 1.85 KB

Contents

/***** BEGIN LICENSE BLOCK *****
 * Copyright (c) 2012-2013 Karol Bucek <self@kares.org>
 * Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
 * Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 ***** END LICENSE BLOCK *****/

package arjdbc.h2;

import org.jruby.Ruby;
import org.jruby.RubyModule;

/**
 * ArJdbc::H2
 *
 * @author kares
 */
//@org.jruby.anno.JRubyModule(name = "ArJdbc::H2")
public class H2Module {

    public static RubyModule load(final RubyModule arJdbc) {
        RubyModule h2 = arJdbc.defineModuleUnder("H2");
        // NOTE: currently no Java implemented Ruby methods
        // h2.defineAnnotatedMethods( H2Module.class );
        return h2;
    }

    public static RubyModule load(final Ruby runtime) {
        return load( arjdbc.ArJdbcModule.get(runtime) );
    }

}

Version data entries

78 entries across 78 versions & 3 rubygems

Version Path
activerecord-jdbc-alt-adapter-51.3.2-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-alt-adapter-52.2.1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-alt-adapter-51.3.1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-alt-adapter-52.2.0-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-alt-adapter-51.3.0-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-alt-adapter-50.3.1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-alt-adapter-50.3.0-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-60.0.rc1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-52.2-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-51.3-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-50.3-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-52.1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-51.2-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-50.2-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-52.0-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-51.1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-50.1-java src/java/arjdbc/h2/H2Module.java
activerecord-jdbc-adapter-ficoh-1.3.21-java src/java/arjdbc/h2/H2Module.java