annotate vendor/plugins/redmine_bibliography/lib/bibliography/projects_helper_patch.rb @ 1184:1027f0f3a81a bug_563

Make "busy projects" and "recent projects" look uniform
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 22 Jan 2013 14:12:47 +0000
parents 858f042e8d11
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