refinerycms-blog/lib/refinery/blog/engine.rb

23 lines
689 B
Ruby

module Refinery
module Blog
class Engine < Rails::Engine
include Refinery::Engine
isolate_namespace Refinery::Blog
initializer "register refinerycms_blog plugin" do
Refinery::Plugin.register do |plugin|
plugin.pathname = root
plugin.name = "refinerycms_blog"
plugin.url = proc { Refinery::Core::Engine.routes.url_helpers.blog_admin_posts_path }
plugin.menu_match = /refinery\/blog\/?(posts|comments|categories)?/
plugin.activity = { :class_name => :'refinery/blog/post' }
end
end
config.after_initialize do
Refinery.register_engine(Refinery::Blog)
end
end
end
end