mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-12-17 04:33:32 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
module ::MyPluginModule
|
||
|
|
class Engine < ::Rails::Engine
|
||
|
|
engine_name PLUGIN_NAME
|
||
|
|
isolate_namespace MyPluginModule
|
||
|
|
config.autoload_paths << File.join(config.root, "lib")
|
||
|
|
end
|
||
|
|
end
|