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

net.sourceforge.pmd.cpd.RubyLanguage Maven / Gradle / Ivy

/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.cpd;

/**
 * Language implemention for Ruby.
 *
 * @author Zev Blut [email protected]
 */
public class RubyLanguage extends AbstractLanguage {

    /**
     * Creates a new Ruby Language instance.
     */
    public RubyLanguage() {
        super("Ruby", "ruby", new RubyTokenizer(), ".rb", ".cgi", ".class");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy