Mercurial > hg > soundsoftware-site
annotate vendor/plugins/redmine_bibliography/lib/bibliography/projects_helper_patch.rb @ 1070:858f042e8d11 bibplugin_cache
Created a patch for the ProjectsHelper to replace the one previously created for the Projects controller.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 21 Nov 2012 14:42:12 +0000 |
parents | |
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 |