lib/release_notes/engine.rb in release_notes-0.1.3 vs lib/release_notes/engine.rb in release_notes-0.2.0
- old
+ new
@@ -1,5 +1,11 @@
module ReleaseNotes
class Engine < ::Rails::Engine
isolate_namespace ReleaseNotes
+
+ initializer 'release_notes.action_controller' do |app|
+ ActiveSupport.on_load :action_controller do
+ helper ReleaseNotes::ApplicationHelper
+ end
+ end
end
end
\ No newline at end of file