1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/dbm/extconf.rb: [DOC] Hide from RDoc

Some libraries might want to document extconf.rb so RDoc treats it
  like any other ruby program. However, DBM users shouldn't care about
  these methods.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-08-12 03:59:50 +00:00
parent eadb8b5897
commit d075c430cb
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,10 @@
Mon Aug 12 12:57:26 2013 Zachary Scott <e@zzak.io>
* ext/dbm/extconf.rb: [DOC] Hide from RDoc
Some libraries might want to document extconf.rb so RDoc treats it
like any other ruby program. However, DBM users shouldn't care about
these methods.
Mon Aug 12 12:53:39 2013 Zachary Scott <e@zzak.io>
* ext/dbm/dbm.c: [DOC] Reformat headings of DBM class

View file

@ -14,6 +14,7 @@
# qdbm QDBM (libqdbm)
# ndbm Some legacy OS may have libndbm.
# :stopdoc:
require 'mkmf'
dir_config("dbm")
@ -268,3 +269,4 @@ if dblib.any? {|db| headers.fetch(db, ["ndbm.h"]).any? {|hdr| headers.db_check(d
convertible_int("datum.dsize", headers.found, headers.defs)
create_makefile("dbm")
end
# :startdoc: