Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
neoteric-news / lib / neoteric-news / engine.rb
Size: Mime:
require 'friendly_id'
require 'neoteric-navigator'
require 'neoteric-archiver'
require 'neoteric-news/posts_controller'
require 'neoteric-news/post'

module NeotericNews
  class Engine < ::Rails::Engine
    isolate_namespace NeotericNews

    initializer 'neoteric_news.action_controller' do |app|
      ActiveSupport.on_load :action_controller do
        helper NeotericNews::PostsHelper
      end
    end
  end
end