module Docs class Ruby < Rdoc # Generated with: # find \ # *.c \ # lib \ # ext/bigdecimal \ # ext/date \ # ext/digest \ # ext/json \ # ext/pathname \ # ext/psych \ # ext/readline \ # ext/ripper \ # ext/socket \ # ext/stringio \ # ext/zlib \ # \( -name '*.c' -or -name '*.rb' \) \ # -not -wholename '*sample/*' \ # | xargs \ # rdoc --format=darkfish --no-line-numbers --op=rdoc --visibility=public self.version = '2.0.0' self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby' html_filters.replace 'rdoc/entries', 'ruby/entries' options[:root_title] = 'Ruby Programming Language' options[:skip] += %w( fatal.html CompositePublisher.html Data.html E2MM.html English.html Exception2MessageMapper.html GServer.html MakeMakefile.html ParallelEach.html Requirement.html SshDirPublisher.html SshFilePublisher.html SshFreshDirPublisher.html Sys.html YAML/DBM.html) options[:skip_patterns] = [ /\AComplex/, /\AJSON\/Ext/, /\AGem/, /\AHTTP/i, /\AIRB/, /\AMiniTest/i, /\ANet\/(?!HTTP)/, /\ANQXML/, /\AOpenSSL/, /\AOptionParser\//, /\APride/, /\APsych\//, /\ARacc/, /\ARake/, /\ARbConfig/, /\ARDoc/, /\AREXML/, /\ARSS/, /\AShell\//, /\ASocket\//, /\ATest/, /\AWEBrick/, /\AXML/, /\AXMP/] options[:attribution] = <<-HTML Ruby Core © 1993–2013 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses. HTML end end