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 / vendor / plugins / redmine_bibliography / lib / bibliography / projects_controller_patch.rb @ 1069:734fe0c6b3e4

History | View | Annotate | Download (460 Bytes)

1 1069:734fe0c6b3e4 luis
# -*- coding: utf-8 -*-
2
require_dependency 'projects_controller'
3
4
module Bibliography
5
    module ProjectsControllerPatch
6
      def self.included(base)
7
        base.send(:include, InstanceMethods)
8
9
        base.class_eval do
10
          unloadable
11
12
          # reads the publications helper on the projects controller
13
          helper :publications
14
          include PublicationsHelper
15
16
        end
17
      end
18
19
      module InstanceMethods
20
21
      end
22
23
    end
24
end