jeremymcanally / rails-book

A book about Rails that's free, open source, and up to date

This URL has Read+Write access

Jeremy McAnally (author)
Wed Jul 16 08:45:45 -0700 2008
name age message
file LICENSE Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
file NOTES Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
file README Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
file Rakefile Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
directory bin/ Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
directory code/ Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
file credits.txt Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
directory markdown/ Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
directory screenshots/ Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
directory static/ Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
file toc.txt Wed Jul 16 08:45:45 -0700 2008 Adding initial, out of date content [Jeremy McAnally]
README
*************************************
*** THIS README IS OUT OF DATE!!! ***
    We're working on a new one...
*************************************

README

The PDF and DOC files are provided for convenience, if you're going to edit the book then please use the files out of 
the markdown folder.

WRITING GUIDELINES

To be written, although we know you need to use Latex.  The process currently being used is to write the source files 
for each chapter in latex format, under the tex folder, named after each chapter.  The 'getting_started_with_rails.tex' 
is the main document that includes all the others.

SOURCE CODE

Source code should be placed in a separate file under the code folder, and an include directive placed in the correct 
place in the chapter.  Like so:

Source code file:
./code/ch0101.rb

To be placed in the book:
\include{../code/tex/ch0101.tex}

The source file should be run through source-highlight (http://www.gnu.org/software/src-highlite/source-highlight.html), 
and the results placed in ./code/tex so that the reader will benefit from the beautiful goodness of source highlighting. 
 This is ultimately more readable.
Note: We only pull out the Ruby and HTML code.

source-highlight --src-lang ruby --out-format latexcolor --input ch0105.rb --output tex/ch0105.tex