To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_bibliography / lib / bibliography / projects_helper_patch.rb @ 1450:020bc7fe7a2a

History | View | Annotate | Download (287 Bytes)

1
module Bibliography
2
  module ProjectsHelperPatch
3

    
4
    def self.included(base) # :nodoc:
5
      base.send(:include, InstanceMethods)
6
      base.send(:include, PublicationsHelper)
7

    
8
      base.class_eval do
9
        unloadable
10
      end
11
    end
12

    
13
    module InstanceMethods
14
    end
15
  end
16
end
17