aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/engine/updater.rb
blob: be7a47124a3e239e3ff996af34141c3b1b250a0a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                             

                                                        






                                                                           
                                                               








                                
# frozen_string_literal: true

require "rails/generators"
require "rails/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