/******************************************************************************* * Copyright (c) 2013 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Guzman - ruby implementation (B#350066) *******************************************************************************/ package org.eclipse.linuxtools.internal.rpmstubby.popup.actions; import org.eclipse.linuxtools.rpmstubby.InputType; /** * Handler for the gemspec stubify command. * */ public class StubifyGemHandler extends StubifyHandler { @Override protected InputType getInputType() { return InputType.RUBY_GEM; } }