1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/engine/updater.rb
yuuji.yaginuma a42351acbc Add app:update task to engines
Occasionally we update the file generated by engine.
Therefore, I think that there is a task for updating as well as
application in the engine, it is convenient for updating.
2017-03-20 15:37:45 +09:00

19 lines
419 B
Ruby

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