Changeset 1233

Show
Ignore:
Timestamp:
12/17/07 02:48:27 (1 year ago)
Author:
sandal
Message:

update version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • acts_as_reportable/Rakefile

    r1207 r1233  
    33require "rake/gempackagetask" 
    44 
    5 AAR_VERSION = "0.9.9
     5AAR_VERSION = "0.9.10
    66 
    77begin 
  • acts_as_reportable/lib/ruport/acts_as_reportable.rb

    r1232 r1233  
    168168                               :only => only, 
    169169                               :except => except, 
    170                                :methods => methods) }.flatten 
    171  
     170                               :methods => methods) }.flatten    
    172171 
    173172        table = Ruport::Data::Table.new(:data => data, 
     
    308307          self.class.aar_columns = cols 
    309308        end 
    310          
    311         self.class.aar_columns |= data_records.first.keys 
     309                             
     310        self.class.aar_columns |= data_records.first.keys   
    312311         
    313312        data_records = 
    314           add_includes(data_records, options[:include]) if options[:include] 
     313          add_includes(data_records, options[:include]) if options[:include]  
     314           
    315315        data_records 
    316316      end 
  • acts_as_reportable/test/acts_as_reportable_test.rb

    r1232 r1233  
    169169    end 
    170170     
    171     def test_column_sorting_works_with_include_option 
     171    def test_column_sorting_works_with_include_option   
    172172      actual = Player.report_table(:all, 
    173173        :only     => %w[name personal_trainer.name],