require_relative "../base" module Rsg module Install class InstallGenerator < Rsg::Generators::Base class_option :path, type: :string, default: nil, desc: "Path to the RSG gem" def add_rsg install_rsg end end end end