aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/engine/updater.rb
blob: 2ecf994a5cbf5b6b534a2cf3df410e8d650c3285 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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