Sha256: 92a9dd2dc4279a90f6fb03d8464a289e57c009f1989a95964612a8a69b8c4d74
Contents?: true
Size: 635 Bytes
Versions: 18
Compression:
Stored size: 635 Bytes
Contents
# $Id: libxml.rb 374 2008-07-11 04:51:41Z cfis $ # Please see the LICENSE file for copyright and distribution information # This is for backwards compatibility and is DEPRECATED module LibXML module XML class Node def property(name) warn('Node#properties is deprecated. Use Node#[] instead.') self[name] end def properties warn('Node#properties is deprecated. Use Node#attributes instead.') self.attributes end def properties? warn('Node#properties? is deprecated. Use Node#attributes? instead.') self.attributes? end end end end
Version data entries
18 entries across 18 versions & 1 rubygems