mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.1 KiB
95 lines
2.1 KiB
module Docs
|
|
class Ruby < Rdoc
|
|
# Generated with:
|
|
# ./configure && make html
|
|
# or:
|
|
# rdoc \
|
|
# --root . \
|
|
# --page-dir doc \
|
|
# --encoding=UTF-8 \
|
|
# --visibility=public \
|
|
# --format=darkfish \
|
|
# --no-line-numbers \
|
|
# --op html .
|
|
|
|
include FixInternalUrlsBehavior
|
|
|
|
self.links = {
|
|
home: 'https://www.ruby-lang.org/',
|
|
code: 'https://github.com/ruby/ruby'
|
|
}
|
|
|
|
html_filters.replace 'rdoc/entries', 'ruby/entries'
|
|
|
|
options[:root_title] = 'Ruby Programming Language'
|
|
options[:title] = ->(filter) { filter.slug == 'globals_rdoc' ? 'Globals' : false }
|
|
|
|
options[:skip] += %w(
|
|
contributing_rdoc.html
|
|
contributors_rdoc.html
|
|
dtrace_probes_rdoc.html
|
|
maintainers_rdoc.html
|
|
regexp_rdoc.html
|
|
standard_library_rdoc.html
|
|
syntax_rdoc.html
|
|
extension_rdoc.html
|
|
extension_ja_rdoc.html
|
|
Data.html
|
|
English.html
|
|
Fcntl.html
|
|
Kconv.html
|
|
NKF.html
|
|
OLEProperty.html
|
|
OptParse.html
|
|
UnicodeNormalize.html)
|
|
|
|
options[:skip_patterns] += [
|
|
/\Alib\//,
|
|
/\ADEBUGGER__/,
|
|
/\AException2MessageMapper/,
|
|
/\AJSON\/Ext/,
|
|
/\AGem/,
|
|
/\AHTTP/i,
|
|
/\AIRB/,
|
|
/\AMakeMakefile/i,
|
|
/\ANQXML/,
|
|
/\APride/,
|
|
/\AProfiler__/,
|
|
/\APsych\//,
|
|
/\ARacc/,
|
|
/\ARake/,
|
|
/\ARbConfig/,
|
|
/\ARDoc/,
|
|
/\AREXML/,
|
|
/\ARSS/,
|
|
/\AShell\//,
|
|
/\ATest/,
|
|
/\AWEBrick/,
|
|
/win32/i,
|
|
/\AXML/,
|
|
/\AXMP/]
|
|
|
|
options[:attribution] = <<-HTML
|
|
Ruby Core © 1993–2017 Yukihiro Matsumoto<br>
|
|
Licensed under the Ruby License.<br>
|
|
Ruby Standard Library © contributors<br>
|
|
Licensed under their own licenses.
|
|
HTML
|
|
|
|
version '2.4' do
|
|
self.release = '2.4.1'
|
|
self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby24'
|
|
end
|
|
|
|
version '2.3' do
|
|
self.release = '2.3.4'
|
|
self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby23'
|
|
end
|
|
|
|
version '2.2' do
|
|
self.release = '2.2.7'
|
|
self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby22'
|
|
end
|
|
end
|
|
end
|