annotate plugins/redmine_bibliography/lib/bibliography/projects_helper_patch.rb @ 1244:a3ed5c4d90f0 redmine-2.2-integration

The Create Project page now allows for correct search/insertion of tags. Using the new version of the redmine tags plugin.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 27 Mar 2013 14:52:16 +0000
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