summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--ext/dbm/extconf.rb2
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b335e1bfd..27c40c986d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/ext/dbm/extconf.rb b/ext/dbm/extconf.rb
index 5a04881616..68070c9970 100644
--- a/ext/dbm/extconf.rb
+++ b/ext/dbm/extconf.rb
@@ -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: