mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
21 lines
461 B
Ruby
21 lines
461 B
Ruby
# 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.public_send(action)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|