From 4100d3beeba993641ada90f4771ee8896ca6fbdd Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 3 Mar 2013 12:10:48 +0000 Subject: [PATCH] Merged r11527 from trunk to 2.3-stable (#13338, #13329) Ruby2.0: remove "warning: class variable access from toplevel" in lib/plugins/rfpdf/lib/tcpdf.rb. Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.3-stable@11533 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/plugins/rfpdf/lib/tcpdf.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/plugins/rfpdf/lib/tcpdf.rb b/lib/plugins/rfpdf/lib/tcpdf.rb index fac984cd0..22e1d2c25 100755 --- a/lib/plugins/rfpdf/lib/tcpdf.rb +++ b/lib/plugins/rfpdf/lib/tcpdf.rb @@ -39,9 +39,6 @@ require 'core/rmagick' # @package com.tecnick.tcpdf # -@@version = "1.53.0.TC031" -@@fpdf_charwidths = {} - PDF_PRODUCER = 'TCPDF via RFPDF 1.53.0.TC031 (http://tcpdf.sourceforge.net)' module TCPDFFontDescriptor @@ -79,6 +76,9 @@ class TCPDF Rails.logger end + @@version = "1.53.0.TC031" + @@fpdf_charwidths = {} + cattr_accessor :k_cell_height_ratio @@k_cell_height_ratio = 1.25 -- 2.39.5