Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 6881

Show
Ignore:
Timestamp:
05/28/07 22:55:14 (1 year ago)
Author:
bitsweat
Message:

Generate rdoc with utf-8 charset. Closes #7188 [manfred, jferris]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionmailer/Rakefile

    r6548 r6881  
    3535  rdoc.title    = "Action Mailer -- Easy email delivery and testing" 
    3636  rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' 
     37  rdoc.options << '--charset' << 'utf-8' 
    3738  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    3839  rdoc.rdoc_files.include('README', 'CHANGELOG') 
  • trunk/actionpack/Rakefile

    r6548 r6881  
    4949  rdoc.title    = "Action Pack -- On rails from request to response" 
    5050  rdoc.options << '--line-numbers' << '--inline-source' 
     51  rdoc.options << '--charset' << 'utf-8' 
    5152  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    5253  if ENV['DOC_FILES']  
  • trunk/actionwebservice/Rakefile

    r6548 r6881  
    4545  rdoc.title    = "Action Web Service -- Web services for Action Pack" 
    4646  rdoc.options << '--line-numbers' << '--inline-source' 
     47  rdoc.options << '--charset' << 'utf-8' 
    4748  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    4849  rdoc.rdoc_files.include('README') 
  • trunk/activerecord/Rakefile

    r6721 r6881  
    120120  rdoc.title    = "Active Record -- Object-relation mapping put on rails" 
    121121  rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' 
     122  rdoc.options << '--charset' << 'utf-8' 
    122123  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    123124  rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') 
  • trunk/activeresource/Rakefile

    r6551 r6881  
    4141  rdoc.title    = "Active Resource -- Object-oriented REST services" 
    4242  rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' 
     43  rdoc.options << '--charset' << 'utf-8' 
    4344  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    4445  rdoc.rdoc_files.include('README', 'CHANGELOG') 
  • trunk/activesupport/Rakefile

    r6548 r6881  
    3131  rdoc.title    = "Active Support -- Utility classes and standard library extensions from Rails" 
    3232  rdoc.options << '--line-numbers' << '--inline-source' 
     33  rdoc.options << '--charset' << 'utf-8' 
    3334  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    3435  rdoc.rdoc_files.include('README', 'CHANGELOG') 
  • trunk/railties/Rakefile

    r6611 r6881  
    271271  rdoc.title    = "Railties -- Gluing the Engine to the Rails" 
    272272  rdoc.options << '--line-numbers' << '--inline-source' << '--accessor' << 'cattr_accessor=object' 
     273  rdoc.options << '--charset' << 'utf-8' 
    273274  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    274275  rdoc.rdoc_files.include('README', 'CHANGELOG')