annotate .svn/pristine/06/06b934af3bce9be376de55c695a81c0e464edbd4.svn-base @ 1519:afce8026aaeb redmine-2.4-integration

Merge from branch "live"
author Chris Cannam
date Tue, 09 Sep 2014 09:34:53 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 # Copyright (c) 2006 4ssoM LLC <www.4ssoM.com>
Chris@909 2 #
Chris@909 3 # The MIT License
Chris@909 4 #
Chris@909 5 # Permission is hereby granted, free of charge, to any person obtaining a copy
Chris@909 6 # of this software and associated documentation files (the "Software"), to deal
Chris@909 7 # in the Software without restriction, including without limitation the rights
Chris@909 8 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Chris@909 9 # copies of the Software, and to permit persons to whom the Software is
Chris@909 10 # furnished to do so, subject to the following conditions:
Chris@909 11 #
Chris@909 12 # The above copyright notice and this permission notice shall be included in
Chris@909 13 # all copies or substantial portions of the Software.
Chris@909 14 #
Chris@909 15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Chris@909 16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Chris@909 17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Chris@909 18 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Chris@909 19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Chris@909 20 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
Chris@909 21 # THE SOFTWARE.
Chris@909 22
Chris@909 23 require 'action_controller'
Chris@909 24 require 'action_view'
Chris@909 25
Chris@909 26 require 'rfpdf/action_controller'
Chris@909 27 require 'rfpdf/action_view'
Chris@909 28
Chris@909 29 require 'rfpdf/template_handler/compile_support'
Chris@909 30
Chris@909 31 require 'rfpdf/template_handlers/base'
Chris@909 32
Chris@909 33
Chris@909 34 class ActionController::Base
Chris@909 35 include RFPDF::ActionController
Chris@909 36 end
Chris@909 37
Chris@909 38 class ActionView::Base
Chris@909 39 include RFPDF::ActionView
Chris@909 40 end