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

Changeset 8964

Show
Ignore:
Timestamp:
03/01/08 22:20:10 (7 months ago)
Author:
tobie
Message:

pdoc: rename p_doc as pdoc.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/pdoc/trunk/CHANGELOG

    r8963 r8964  
     1* Rename p_doc as pdoc. [Tobie] 
     2 
    13* Remove reference to Prototype from @title instance variable. [Tobie] 
    24 
  • spinoffs/pdoc/trunk/lib/pdoc.rb

    r8944 r8964  
    22OUTPUT_DIR = File.expand_path(File.join(DIR, "..", "output")) 
    33TEMPLATES_DIR = File.expand_path(File.join(DIR, "..", "templates")) 
    4 PARSER_DIR = File.expand_path(File.join(DIR, "p_doc", "parser")) 
     4PARSER_DIR = File.expand_path(File.join(DIR, "pdoc", "parser")) 
    55VENDOR_DIR = File.expand_path(File.join(DIR, "..", "vendor")) 
    66 
     
    1010 
    1111require 'erb'  
    12 require File.expand_path(File.join(DIR, "p_doc", "generators")) 
    13 require File.expand_path(File.join(DIR, "p_doc", "parser")) 
     12require File.expand_path(File.join(DIR, "pdoc", "generators")) 
     13require File.expand_path(File.join(DIR, "pdoc", "parser")) 
  • spinoffs/pdoc/trunk/rakefile

    r8963 r8964  
    11require 'rake' 
    2 require 'lib/p_doc' 
     2require 'lib/pdoc' 
    33 
    44desc "Builds the documentation"