Version Ruby documentation (2.2 and 2.3)

Ref #25.
pull/308/merge
Thibaut Courouble 9 years ago
parent ff2eaa751a
commit 4f861e78e9

@ -351,7 +351,7 @@ credits = [
'https://raw.githubusercontent.com/rethinkdb/docs/master/LICENSE' 'https://raw.githubusercontent.com/rethinkdb/docs/master/LICENSE'
], [ ], [
'Ruby', 'Ruby',
'1993-2015 Yukihiro Matsumoto', '1993-2016 Yukihiro Matsumoto',
'Ruby', 'Ruby',
'https://www.ruby-lang.org/en/about/license.txt' 'https://www.ruby-lang.org/en/about/license.txt'
], [ ], [

@ -1,17 +1,17 @@
module Docs module Docs
class Ruby < Rdoc class Ruby < Rdoc
# Generated with: # Generated with:
# rdoc \ # ./configure && make html
# --root . \ # or:
# --page-dir doc \ # rdoc \
# --encoding=UTF-8 \ # --root . \
# --visibility=public \ # --page-dir doc \
# --format=darkfish \ # --encoding=UTF-8 \
# --no-line-numbers \ # --visibility=public \
# --op html . # --format=darkfish \
# --no-line-numbers \
# --op html .
self.release = '2.2.1'
self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby'
self.links = { self.links = {
home: 'https://www.ruby-lang.org/', home: 'https://www.ruby-lang.org/',
code: 'https://github.com/ruby/ruby' code: 'https://github.com/ruby/ruby'
@ -30,6 +30,8 @@ module Docs
regexp_rdoc.html regexp_rdoc.html
standard_library_rdoc.html standard_library_rdoc.html
syntax_rdoc.html syntax_rdoc.html
extension_rdoc.html
extension_ja_rdoc.html
Data.html Data.html
English.html English.html
Fcntl.html Fcntl.html
@ -69,10 +71,20 @@ module Docs
/\AXMP/] /\AXMP/]
options[:attribution] = <<-HTML options[:attribution] = <<-HTML
Ruby Core &copy; 1993&ndash;2015 Yukihiro Matsumoto<br> Ruby Core &copy; 1993&ndash;2016 Yukihiro Matsumoto<br>
Licensed under the Ruby License.<br> Licensed under the Ruby License.<br>
Ruby Standard Library &copy; contributors<br> Ruby Standard Library &copy; contributors<br>
Licensed under their own licenses. Licensed under their own licenses.
HTML HTML
version '2.2' do
self.release = '2.2.4'
self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby22'
end
version '2.3' do
self.release = '2.3.0'
self.dir = '/Users/Thibaut/DevDocs/Docs/RDoc/Ruby23'
end
end end
end end

Loading…
Cancel
Save