2007-08-16 00:20:18 +04:00
|
|
|
= CodeRay
|
|
|
|
|
2011-10-08 17:34:30 +04:00
|
|
|
Tired of blue'n'gray? Try the original version of this documentation on
|
|
|
|
coderay.rubychan.de[http://coderay.rubychan.de/doc/] :-)
|
2007-08-16 00:20:18 +04:00
|
|
|
|
|
|
|
== About
|
2011-10-08 17:34:30 +04:00
|
|
|
|
2007-08-16 00:20:18 +04:00
|
|
|
CodeRay is a Ruby library for syntax highlighting.
|
|
|
|
|
2011-10-08 17:34:30 +04:00
|
|
|
You put your code in, and you get it back colored; Keywords, strings,
|
|
|
|
floats, comments - all in different colors. And with line numbers.
|
2007-08-16 00:20:18 +04:00
|
|
|
|
|
|
|
*Syntax* *Highlighting*...
|
|
|
|
* makes code easier to read and maintain
|
|
|
|
* lets you detect syntax errors faster
|
|
|
|
* helps you to understand the syntax of a language
|
|
|
|
* looks nice
|
2011-10-08 17:34:30 +04:00
|
|
|
* is what everybody wants to have on their website
|
2007-08-16 00:20:18 +04:00
|
|
|
* solves all your problems and makes the girls run after you
|
|
|
|
|
|
|
|
|
|
|
|
== Installation
|
|
|
|
|
|
|
|
% gem install coderay
|
|
|
|
|
|
|
|
|
|
|
|
=== Dependencies
|
|
|
|
|
2011-10-08 17:34:30 +04:00
|
|
|
CodeRay needs Ruby 1.8.7+ or 1.9.2+. It also runs on Rubinius and JRuby.
|
2007-08-16 00:20:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
== Example Usage
|
|
|
|
|
|
|
|
require 'coderay'
|
|
|
|
|
2011-10-08 17:34:30 +04:00
|
|
|
html = CodeRay.scan("puts 'Hello, world!'", :ruby).div(:line_numbers => :table)
|
2007-08-16 00:20:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
== Documentation
|
|
|
|
|
|
|
|
See CodeRay.
|
|
|
|
|
|
|
|
|
|
|
|
== Credits
|
|
|
|
|
|
|
|
=== Special Thanks to
|
|
|
|
|
|
|
|
* licenser (Heinz N. Gies) for ending my QBasic career, inventing the Coder
|
|
|
|
project and the input/output plugin system.
|
|
|
|
CodeRay would not exist without him.
|
2010-03-16 23:29:12 +03:00
|
|
|
* bovi (Daniel Bovensiepen) for helping me out on various occasions.
|
2007-08-16 00:20:18 +04:00
|
|
|
|
|
|
|
=== Thanks to
|
|
|
|
|
|
|
|
* Caleb Clausen for writing RubyLexer (see
|
|
|
|
http://rubyforge.org/projects/rubylexer) and lots of very interesting mail
|
|
|
|
traffic
|
2010-03-16 23:29:12 +03:00
|
|
|
* birkenfeld (Georg Brandl) and mitsuhiku (Arnim Ronacher) for PyKleur, now pygments.
|
|
|
|
You guys rock!
|
2007-08-16 00:20:18 +04:00
|
|
|
* Jamis Buck for writing Syntax (see http://rubyforge.org/projects/syntax)
|
|
|
|
I got some useful ideas from it.
|
|
|
|
* Doug Kearns and everyone else who worked on ruby.vim - it not only helped me
|
|
|
|
coding CodeRay, but also gave me a wonderful target to reach for the Ruby
|
|
|
|
scanner.
|
2010-03-16 23:29:12 +03:00
|
|
|
* everyone who uses CodeBB on http://www.rubyforen.de and http://www.python-forum.de
|
|
|
|
* iGEL, magichisoka, manveru, WoNáDo and everyone I forgot from rubyforen.de
|
|
|
|
* Dethix from ruby-mine.de
|
|
|
|
* zickzackw
|
|
|
|
* Dookie (who is no longer with us...) and Leonidas from http://www.python-forum.de
|
2007-08-16 00:20:18 +04:00
|
|
|
* Andreas Schwarz for finding out that CaseIgnoringWordList was not case
|
|
|
|
ignoring! Such things really make you write tests.
|
2010-03-16 23:29:12 +03:00
|
|
|
* closure for the first version of the Scheme scanner.
|
|
|
|
* Stefan Walk for the first version of the JavaScript and PHP scanners.
|
|
|
|
* Josh Goebel for another version of the JavaScript scanner, a SQL and a Diff scanner.
|
|
|
|
* Jonathan Younger for pointing out the licence confusion caused by wrong LICENSE file.
|
|
|
|
* Jeremy Hinegardner for finding the shebang-on-empty-file bug in FileType.
|
|
|
|
* Charles Oliver Nutter and Yehuda Katz for helping me benchmark CodeRay on JRuby.
|
|
|
|
* Andreas Neuhaus for pointing out a markup bug in coderay/for_redcloth.
|
|
|
|
* 0xf30fc7 for the FileType patch concerning Delphi file extensions.
|
|
|
|
* The folks at redmine.org - thank you for using and fixing CodeRay!
|
|
|
|
* Keith Pitt for his SQL scanners
|
|
|
|
* Rob Aldred for the terminal encoder
|
|
|
|
* Trans for pointing out $DEBUG dependencies
|
|
|
|
* Flameeyes for finding that Term::ANSIColor was obsolete
|
2007-08-16 00:20:18 +04:00
|
|
|
* matz and all Ruby gods and gurus
|
|
|
|
* The inventors of: the computer, the internet, the true color display, HTML &
|
2010-03-16 23:29:12 +03:00
|
|
|
CSS, VIM, Ruby, pizza, microwaves, guitars, scouting, programming, anime,
|
2007-08-16 00:20:18 +04:00
|
|
|
manga, coke and green ice tea.
|
|
|
|
|
|
|
|
Where would we be without all those people?
|
|
|
|
|
|
|
|
=== Created using
|
|
|
|
|
|
|
|
* Ruby[http://ruby-lang.org/]
|
2010-03-16 23:29:12 +03:00
|
|
|
* Chihiro (my Sony VAIO laptop); Henrietta (my old MacBook);
|
|
|
|
Triella, born Rico (my new MacBook); as well as
|
|
|
|
Seras and Hikari (my PCs)
|
|
|
|
* RDE[http://homepage2.nifty.com/sakazuki/rde_e.html],
|
|
|
|
VIM[http://vim.org] and TextMate[http://macromates.com]
|
|
|
|
* Subversion[http://subversion.tigris.org/]
|
|
|
|
* Redmine[http://redmine.org/]
|
|
|
|
* Firefox[http://www.mozilla.org/products/firefox/],
|
|
|
|
Firebug[http://getfirebug.com/], Safari[http://www.apple.com/safari/], and
|
2007-08-16 00:20:18 +04:00
|
|
|
Thunderbird[http://www.mozilla.org/products/thunderbird/]
|
2010-03-16 23:29:12 +03:00
|
|
|
* RubyGems[http://docs.rubygems.org/] and Rake[http://rake.rubyforge.org/]
|
|
|
|
* TortoiseSVN[http://tortoisesvn.tigris.org/] using Apache via
|
2007-08-16 00:20:18 +04:00
|
|
|
XAMPP[http://www.apachefriends.org/en/xampp.html]
|
|
|
|
* RDoc (though I'm quite unsatisfied with it)
|
2010-03-16 23:29:12 +03:00
|
|
|
* Microsoft Windows (yes, I confess!) and MacOS X
|
2007-08-16 00:20:18 +04:00
|
|
|
* GNUWin32, MinGW and some other tools to make the shell under windows a bit
|
2010-03-16 23:29:12 +03:00
|
|
|
less useless
|
2007-08-16 00:20:18 +04:00
|
|
|
* Term::ANSIColor[http://term-ansicolor.rubyforge.org/]
|
2010-03-16 23:29:12 +03:00
|
|
|
* PLEAC[http://pleac.sourceforge.net/] code examples
|
2011-10-08 17:34:30 +04:00
|
|
|
* Github
|
|
|
|
* Travis CI (http://travis-ci.org/rubychan/github)
|
2007-08-16 00:20:18 +04:00
|
|
|
|
2010-03-16 23:29:12 +03:00
|
|
|
=== Free
|
2007-08-16 00:20:18 +04:00
|
|
|
|
|
|
|
* As you can see, CodeRay was created under heavy use of *free* software.
|
|
|
|
* So CodeRay is also *free*.
|
|
|
|
* If you use CodeRay to create software, think about making this software
|
|
|
|
*free*, too.
|
|
|
|
* Thanks :)
|