Changeset 1284

Show
Ignore:
Timestamp:
03/06/08 15:49:23 (9 months ago)
Author:
sandal
Message:

small improvement to FCSV shim

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ruport/trunk/lib/ruport/formatter/csv.rb

    r1283 r1284  
    3434    if RUBY_VERSION > "1.9"      
    3535      require "csv" 
    36       FCSV = CSV 
    37       alias_method :FCSV, :CSV    
     36      unless defined? FCSV  
     37        FCSV = CSV   
     38        alias_method :FCSV, :CSV     
     39      end 
    3840    end 
    3941