mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
a2845a44f8
It's not works with current Ruby version. [fix GH-1271][ruby-core:59588][Bug #9369] * lib/xmlrpc/config.rb: ditto. * lib/xmlrpc/parser.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
39 lines
825 B
Ruby
39 lines
825 B
Ruby
# frozen_string_literal: false
|
|
#
|
|
# $Id$
|
|
# Configuration file for XML-RPC for Ruby
|
|
#
|
|
|
|
module XMLRPC # :nodoc:
|
|
|
|
module Config
|
|
|
|
# or XMLWriter::XMLParser
|
|
DEFAULT_WRITER = XMLWriter::Simple
|
|
|
|
# === Available parsers
|
|
#
|
|
# * XMLParser::REXMLStreamParser
|
|
# * XMLParser::LibXMLStreamParser
|
|
DEFAULT_PARSER = XMLParser::REXMLStreamParser
|
|
|
|
# enable <code><nil/></code> tag
|
|
ENABLE_NIL_CREATE = false
|
|
ENABLE_NIL_PARSER = false
|
|
|
|
# allows integers greater than 32-bit if +true+
|
|
ENABLE_BIGINT = false
|
|
|
|
# enable marshalling Ruby objects which include XMLRPC::Marshallable
|
|
ENABLE_MARSHALLING = true
|
|
|
|
# enable multiCall extension by default
|
|
ENABLE_MULTICALL = false
|
|
|
|
# enable Introspection extension by default
|
|
ENABLE_INTROSPECTION = false
|
|
|
|
end
|
|
|
|
end
|
|
|