From 34592fb5b6798b15a3fbc1dd62ad5e0250411f52 Mon Sep 17 00:00:00 2001 From: ngoto Date: Thu, 6 Dec 2012 14:30:24 +0000 Subject: * ext/dl/lib/dl/func.rb (CALL_TYPE_TO_ABI, FiddleClosureCFunc): exclude private constants and methods from rdoc git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/dl/lib/dl/func.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ext/dl') diff --git a/ext/dl/lib/dl/func.rb b/ext/dl/lib/dl/func.rb index 69b6ad306e..434f1bc868 100644 --- a/ext/dl/lib/dl/func.rb +++ b/ext/dl/lib/dl/func.rb @@ -12,6 +12,7 @@ module DL include ValueUtil if DL.fiddle? + # :stopdoc: CALL_TYPE_TO_ABI = Hash.new { |h, k| raise RuntimeError, "unsupported call type: #{k}" }.merge({ :stdcall => @@ -20,13 +21,14 @@ module DL nil => Fiddle::Function::DEFAULT }).freeze private_constant :CALL_TYPE_TO_ABI + # :startdoc: - def self.call_type_to_abi(call_type) + def self.call_type_to_abi(call_type) # :nodoc: CALL_TYPE_TO_ABI[call_type] end private_class_method :call_type_to_abi - class FiddleClosureCFunc < Fiddle::Closure + class FiddleClosureCFunc < Fiddle::Closure # :nodoc: all def initialize ctype, arg, abi, name @name = name super(ctype, arg, abi) @@ -37,7 +39,7 @@ module DL end private_constant :FiddleClosureCFunc - def self.class_fiddle_closure_cfunc + def self.class_fiddle_closure_cfunc # :nodoc: FiddleClosureCFunc end private_class_method :class_fiddle_closure_cfunc -- cgit v1.2.3