Paul Klumpp cd873bce75 bundle install --deployment 12 vuotta sitten
..
bin cd873bce75 bundle install --deployment 12 vuotta sitten
lib cd873bce75 bundle install --deployment 12 vuotta sitten
test cd873bce75 bundle install --deployment 12 vuotta sitten
.autotest cd873bce75 bundle install --deployment 12 vuotta sitten
.document cd873bce75 bundle install --deployment 12 vuotta sitten
.gemtest cd873bce75 bundle install --deployment 12 vuotta sitten
DEVELOPERS.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten
History.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten
LEGAL.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten
LICENSE.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten
Manifest.txt cd873bce75 bundle install --deployment 12 vuotta sitten
README.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten
RI.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten
Rakefile cd873bce75 bundle install --deployment 12 vuotta sitten
TODO.rdoc cd873bce75 bundle install --deployment 12 vuotta sitten

README.rdoc

= \RDoc - Ruby Documentation System

home :: https://github.com/rdoc/rdoc
rdoc :: http://docs.seattlerb.org/rdoc
bugs :: https://github.com/rdoc/rdoc/issues

== Description

RDoc produces HTML and command-line documentation for Ruby projects. RDoc
includes the +rdoc+ and +ri+ tools for generating and displaying online
documentation.

See RDoc for a description of RDoc's markup and basic use.

== Synopsis

To learn RDoc's syntax and directives for documenting your ruby project see
RDoc::Markup. RDoc::Parser::Ruby and RDoc::Parser::C have additional
directives (such as metaprogrammed methods) for documenting Ruby and C files
respectively.

To generate HTML documentation for your project run rdoc . in your
project's root directory.

To determine how well your project is documented run rdoc -C lib to
get a documentation coverage report. rdoc -C1 lib includes parameter
names in the documentation coverage report.

To generate documentation using +rake+ see RDoc::Task.

To generate documentation programmatically:

gem 'rdoc'
require 'rdoc/rdoc'

options = RDoc::Options.new
# see RDoc::Options

rdoc = RDoc::RDoc.new
rdoc.document options
# see RDoc::RDoc

== Bugs

If you find a bug, please report it at the RDoc project's
{issues tracker}[https://github.com/rdoc/rdoc/issues] on github.

== License

RDoc is Copyright (c) 2001-2003 Dave Thomas, The Pragmatic Programmers.
Portions (c) 2007-2011 Eric Hodel. Portions copyright others, see individual
files for details.

It is free software, and may be redistributed under the terms specified in
LICENSE.txt.

== Warranty

This software is provided "as is" and without any express or implied
warranties, including, without limitation, the implied warranties of
merchantibility and fitness for a particular purpose.