Changeset 19714 for lang/ruby

Show
Ignore:
Timestamp:
09/22/08 10:54:37 (2 months ago)
Author:
mtv
Message:

statuses arrangement was changed from descending order to ascending order

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/robot-twitter/trunk/robot-twitter.rb

    r19698 r19714  
    5858    end 
    5959 
    60     mail += "-----------------------------------------\n" 
    61     mail += name + "\n\n" 
    62     mail += content + "\n" 
    63     mail += time + "\n" 
     60    # 逆順に追加する 
     61    stat = "-----------------------------------------\n" 
     62    stat += name + "\n\n" 
     63    stat += content + "\n" 
     64    stat += time + "\n" 
     65    mail = stat + mail 
    6466  end 
    6567