aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/engine/updater.rb
blob: af2bff1e5969b082dd36b27084544e10d04ea6f8 (plain) (tree)
1
2

                                                              
















                                                                           
require_relative "../generators"
require_relative "../generators/rails/plugin/plugin_generator"

module Rails
  class Engine
    class Updater
      class << self
        def generator
          @generator ||= Rails::Generators::PluginGenerator.new ["plugin"],
            { engine: true }, destination_root: ENGINE_ROOT
        end

        def run(action)
          generator.send(action)
        end
      end
    end
  end
end