annotate plugins/redmine_bibliography/lib/bibliography/projects_helper_patch.rb @ 1609:5486a5848ad8 deploy

Load from deploy-source root, not deployed root (consistent with check in prepare.sh)
author Chris Cannam
date Tue, 29 Aug 2017 11:52:36 +0100
parents b4b72f1eb644
children
rev   line source
luis@1070 1 module Bibliography
luis@1070 2 module ProjectsHelperPatch
luis@1070 3
luis@1070 4 def self.included(base) # :nodoc:
luis@1070 5 base.send(:include, InstanceMethods)
luis@1070 6 base.send(:include, PublicationsHelper)
luis@1070 7
luis@1070 8 base.class_eval do
luis@1070 9 unloadable
luis@1070 10 end
luis@1070 11 end
luis@1070 12
luis@1070 13 module InstanceMethods
luis@1070 14 end
luis@1070 15 end
luis@1070 16 end
luis@1070 17