=== 1.6.6.2 / 2015-01-23 ==== Bug fixes * Fixed installation issue affecting compiler arguments. (#1230) === 1.6.6.1 / 2015-01-22 Note that 1.6.6.0 was not released. ==== Features * Unified Node and NodeSet implementations of #search, #xpath and #css. * Added Node#lang and Node#lang=. * bin/nokogiri passes the URI to parse() if an HTTP URL is given. * bin/nokogiri now loads ~/.nokogirirc so user can define helper methods, etc. * bin/nokogiri can be configured to use Pry instead of IRB by adding a couple of lines to ~/.nokogirirc. (#1198) * bin/nokogiri can better handle urls from STDIN (aiding use of xargs). (#1065) * JRuby 9K support. ==== Bug fixes * DocumentFragment#search now matches against root nodes. (#1205) * (MRI) More fixes related to handling libxml2 parse errors during DocumentFragment#dup. (#1196) * (JRuby) Builder now handles namespace hrefs properly when there is a default ns. (#1039) * (JRuby) Clear the XPath cache on attr removal. (#1109) * `XML::Comment.new` argument types are now consistent and safe (and documented) across MRI and JRuby. (#1224) * (MRI) Restoring support for Ruby 1.9.2 that was broken in v1.6.4.1 and v1.6.5. (#1207) * Check if `zlib` is available before building `libxml2`. (#1188) * (JRuby) HtmlSaxPushParser now exists. (#1147) (Thanks, Piotr Szmielew!) === 1.6.5 / 2014-11-26 ==== Features * Implement Slop#respond_to_missing?. (#1176) * Optimized the XPath query generated by an `an+b` CSS query. ==== Bug fixes * Capture non-parse errors from Document#dup in Document#errors. (#1196) * (JRuby) Document#canonicalize parameters are now consistent with MRI. (#1189) === 1.6.4.1 / 2014-11-05 ==== Bug fixes * (MRI) Fix a bug where CFLAGS passed in are dropped. (#1188) * Fix a bug where CSS selector :nth(n) did not work. (#1187) === 1.6.4 / 2014-11-04 ==== Features * (MRI) Bundled Libxml2 is upgraded to 2.9.2. * (MRI) `nokogiri --version` will include a list of applied patches. * (MRI) Nokogiri no longer prints messages directly to TTY while building the extension. * (MRI) Detect and help user fix a missing /usr/include/iconv.h on OS X. (#1111) * (MRI) Improve the iconv detection for building libxml2. ==== Bug fixes * (MRI) Fix DocumentFragment#element_children (#1138). * Fix a bug with CSS attribute selector without any prefix where "foo [bar]" was treated as "foo[bar]". (#1174) === 1.6.3.1 / 2014-07-21 ==== Bug fixes * Addressing an Apple Macintosh installation problem for GCC users. #1130 (Thanks, @zenspider!) === 1.6.3 / 2014-07-20 ==== Features * Added Node#document? and Node#processing_instruction? ==== Bug fixes * [JRuby] Fix Ruby memory exhaustion vulnerability. #1087 (Thanks, @ocher) * [MRI] Fix segfault during GC when using `libxml-ruby` and `nokogiri` together in multi-threaded environment. #895 (Thanks, @ender672!) * Building on OSX 10.9 stock ruby 2.0.0 now works. #1101 (Thanks, @zenspider!) * Node#parse now works again for HTML document nodes (broken in 1.6.2+). * Processing instructions can now be added via Node#add_next_sibling. === 1.6.2.1 / 2014-05-13 ==== Bug fixes * Fix statically-linked libxml2 installation when using universal builds of Ruby. #1104 * Patching `mini_portile` to address the git dependency detailed in #1102. * Library load fix to address segfault reported on some systems. #1097 === 1.6.2 / 2014-05-12 ==== Security Note A set of security and bugfix patches have been backported from the libxml2 and libxslt repositories onto the version of 2.8.0 packaged with Nokogiri, including these notable security fixes: * https://git.gnome.org/browse/libxml2/commit/?id=4629ee02ac649c27f9c0cf98ba017c6b5526070f * CVE-2013-2877 https://git.gnome.org/browse/libxml2/commit/?id=e50ba8164eee06461c73cd8abb9b46aa0be81869 * CVE-2014-0191 https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df It is recommended that you upgrade from 1.6.x to this version as soon as possible. ==== Compatibility Note Now requires libxml >= 2.6.21 (was previously >= 2.6.17). ==== Features * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32) and add support for native builds on Windows. #864, #989, #1072 * (MRI) Alias CP932 to Windows-31J if iconv does not support Windows-31J. * (MRI) Nokogiri now links packaged libraries statically. To disable static linking, pass --disable-static to extconf.rb. #923 * (MRI) Fix a library path (LIBPATH) precedence problem caused by CRuby bug #9760. * (MRI) Nokogiri automatically deletes directories of packaged libraries only used during build. To keep them for debugging purposes, pass --disable-clean to extconf.rb. #952 * (MRI) Nokogiri now builds libxml2 properly with iconv support on platforms where libiconv is installed outside the system default directories, such as FreeBSD. * Add support for an-b in nth selectors. #886 (Thanks, Magnus Bergmark!) * Add support for bare and multiple :not() functions in selectors. #887 (Thanks, Magnus Bergmark!) * (MRI) Add an extconf.rb option --use-system-libraries, alternative to setting the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES. * (MRI) Update packaged libraries: libxslt to 1.1.28, zlib to 1.2.8, and libiconv to 1.14, respectively. * Nokogiri::HTML::Document#title= and #meta_encoding= now always add an element if not present, trying hard to find the best place to put it. * Nokogiri::XML::DTD#html_dtd? and #html5_dtd? are added. * Nokogiri::XML::Node#prepend_child is added. #664 * Nokogiri::XML::SAX::ParserContext#recovery is added. #453 * Fix documentation for XML::Node#namespace. #803 #802 (Thanks, Hoylen Sue) * Allow Nokogiri::XML::Node#parse from unparented non-element nodes. #407 ==== Bugfixes * Ensure :only-child pseudo class works within :not pseudo class. #858 (Thanks, Yamagishi Kazutoshi!) * Don't call pkg_config when using bundled libraries in extconf.rb #931 (Thanks, Shota Fukumori!) * Nokogiri.parse() does not mistake a non-HTML document like a RSS document as HTML document. #932 (Thanks, Yamagishi Kazutoshi!) * (MRI) Perform a node type check before adding a child node to another. Previously adding a text node to another as a child could cause a SEGV. #1092 * (JRuby) XSD validation crashes in Java version. #373 * (JRuby) Document already has a root node error while using Builder. #646 * (JRuby) c14n tests are all passing on JRuby. #226 * Parsing empty documents raise SyntaxError in strict mode. #1005 * (JRuby) Make xpath faster by caching the xpath context. #741 * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998 * (JRuby) Inconsistent behavior aliasing the default namespace. #940 * (JRuby) Inconsistent behavior between parsing and adding namespaces. #943 * (JRuby) Xpath returns inconsistent result set on cloned document with namespaces and attributes. #1034 * (JRuby) Java-Implementation forgets element namespaces #902 * (JRuby) JRuby-Nokogiri does not recognise attributes inside namespaces #1081 * (JRuby) JRuby-Nokogiri has different comment node name #1080 * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processing #1070
285 lines
13 KiB
Text
285 lines
13 KiB
Text
@comment $NetBSD: PLIST,v 1.13 2015/02/05 15:11:35 taca Exp $
|
|
bin/nokogiri
|
|
${GEM_HOME}/cache/${GEM_NAME}.gem
|
|
${GEM_EXTSDIR}/nokogiri/nokogiri.${RUBY_DLEXT}
|
|
${GEM_LIBDIR}/.autotest
|
|
${GEM_LIBDIR}/.cross_rubies
|
|
${GEM_LIBDIR}/.editorconfig
|
|
${GEM_LIBDIR}/.gemtest
|
|
${GEM_LIBDIR}/.travis.yml
|
|
${GEM_LIBDIR}/CHANGELOG.ja.rdoc
|
|
${GEM_LIBDIR}/CHANGELOG.rdoc
|
|
${GEM_LIBDIR}/C_CODING_STYLE.rdoc
|
|
${GEM_LIBDIR}/Gemfile
|
|
${GEM_LIBDIR}/Manifest.txt
|
|
${GEM_LIBDIR}/README.ja.rdoc
|
|
${GEM_LIBDIR}/README.rdoc
|
|
${GEM_LIBDIR}/ROADMAP.md
|
|
${GEM_LIBDIR}/Rakefile
|
|
${GEM_LIBDIR}/STANDARD_RESPONSES.md
|
|
${GEM_LIBDIR}/Y_U_NO_GEMSPEC.md
|
|
${GEM_LIBDIR}/bin/nokogiri
|
|
${GEM_LIBDIR}/build_all
|
|
${GEM_LIBDIR}/dependencies.yml
|
|
${GEM_LIBDIR}/ext/nokogiri/depend
|
|
${GEM_LIBDIR}/ext/nokogiri/extconf.rb
|
|
${GEM_LIBDIR}/ext/nokogiri/html_document.c
|
|
${GEM_LIBDIR}/ext/nokogiri/html_document.h
|
|
${GEM_LIBDIR}/ext/nokogiri/html_element_description.c
|
|
${GEM_LIBDIR}/ext/nokogiri/html_element_description.h
|
|
${GEM_LIBDIR}/ext/nokogiri/html_entity_lookup.c
|
|
${GEM_LIBDIR}/ext/nokogiri/html_entity_lookup.h
|
|
${GEM_LIBDIR}/ext/nokogiri/html_sax_parser_context.c
|
|
${GEM_LIBDIR}/ext/nokogiri/html_sax_parser_context.h
|
|
${GEM_LIBDIR}/ext/nokogiri/html_sax_push_parser.c
|
|
${GEM_LIBDIR}/ext/nokogiri/html_sax_push_parser.h
|
|
${GEM_LIBDIR}/ext/nokogiri/nokogiri.c
|
|
${GEM_LIBDIR}/ext/nokogiri/nokogiri.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_attr.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_attr.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_attribute_decl.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_attribute_decl.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_cdata.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_cdata.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_comment.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_comment.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_document.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_document.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_document_fragment.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_document_fragment.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_dtd.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_dtd.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_element_content.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_element_content.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_element_decl.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_element_decl.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_encoding_handler.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_encoding_handler.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_entity_decl.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_entity_decl.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_entity_reference.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_entity_reference.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_io.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_io.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_libxml2_hacks.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_libxml2_hacks.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_namespace.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_namespace.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_node.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_node.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_node_set.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_node_set.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_processing_instruction.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_processing_instruction.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_reader.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_reader.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_relax_ng.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_relax_ng.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_sax_parser.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_sax_parser.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_sax_parser_context.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_sax_parser_context.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_sax_push_parser.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_sax_push_parser.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_schema.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_schema.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_syntax_error.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_syntax_error.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_text.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_text.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_xpath_context.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xml_xpath_context.h
|
|
${GEM_LIBDIR}/ext/nokogiri/xslt_stylesheet.c
|
|
${GEM_LIBDIR}/ext/nokogiri/xslt_stylesheet.h
|
|
${GEM_LIBDIR}/lib/nokogiri.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css/node.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css/parser.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css/parser.y
|
|
${GEM_LIBDIR}/lib/nokogiri/css/parser_extras.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css/syntax_error.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css/tokenizer.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/css/tokenizer.rex
|
|
${GEM_LIBDIR}/lib/nokogiri/css/xpath_visitor.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/decorators/slop.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/builder.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/document.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/document_fragment.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/element_description.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/element_description_defaults.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/entity_lookup.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/sax/parser.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/sax/parser_context.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/html/sax/push_parser.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/nokogiri.${RUBY_DLEXT}
|
|
${GEM_LIBDIR}/lib/nokogiri/syntax_error.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/version.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/attr.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/attribute_decl.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/builder.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/cdata.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/character_data.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/document.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/document_fragment.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/dtd.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/element_content.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/element_decl.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/entity_decl.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/namespace.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/node.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/node/save_options.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/node_set.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/notation.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/parse_options.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/pp.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/pp/character_data.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/pp/node.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/processing_instruction.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/reader.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/relax_ng.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/sax.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/sax/document.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/sax/parser.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/sax/parser_context.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/sax/push_parser.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/schema.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/searchable.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/syntax_error.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/text.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/xpath.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/xpath/syntax_error.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xml/xpath_context.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xslt.rb
|
|
${GEM_LIBDIR}/lib/nokogiri/xslt/stylesheet.rb
|
|
${GEM_LIBDIR}/lib/xsd/xmlparser/nokogiri.rb
|
|
${GEM_LIBDIR}/ports/patches/libxml2/0001-Revert-Missing-initialization-for-the-catalog-module.patch
|
|
${GEM_LIBDIR}/ports/patches/libxml2/0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0014-Fix-for-bug-436589.patch
|
|
${GEM_LIBDIR}/ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch
|
|
${GEM_LIBDIR}/ports/patches/sort-patches-by-date
|
|
${GEM_LIBDIR}/suppressions/README.txt
|
|
${GEM_LIBDIR}/suppressions/nokogiri_ree-1.8.7.358.supp
|
|
${GEM_LIBDIR}/suppressions/nokogiri_ruby-1.8.7.370.supp
|
|
${GEM_LIBDIR}/suppressions/nokogiri_ruby-1.9.2.320.supp
|
|
${GEM_LIBDIR}/suppressions/nokogiri_ruby-1.9.3.327.supp
|
|
${GEM_LIBDIR}/tasks/test.rb
|
|
${GEM_LIBDIR}/test/css/test_nthiness.rb
|
|
${GEM_LIBDIR}/test/css/test_parser.rb
|
|
${GEM_LIBDIR}/test/css/test_tokenizer.rb
|
|
${GEM_LIBDIR}/test/css/test_xpath_visitor.rb
|
|
${GEM_LIBDIR}/test/decorators/test_slop.rb
|
|
${GEM_LIBDIR}/test/files/2ch.html
|
|
${GEM_LIBDIR}/test/files/address_book.rlx
|
|
${GEM_LIBDIR}/test/files/address_book.xml
|
|
${GEM_LIBDIR}/test/files/atom.xml
|
|
${GEM_LIBDIR}/test/files/bar/bar.xsd
|
|
${GEM_LIBDIR}/test/files/bogus.xml
|
|
${GEM_LIBDIR}/test/files/dont_hurt_em_why.xml
|
|
${GEM_LIBDIR}/test/files/encoding.html
|
|
${GEM_LIBDIR}/test/files/encoding.xhtml
|
|
${GEM_LIBDIR}/test/files/exslt.xml
|
|
${GEM_LIBDIR}/test/files/exslt.xslt
|
|
${GEM_LIBDIR}/test/files/foo/foo.xsd
|
|
${GEM_LIBDIR}/test/files/metacharset.html
|
|
${GEM_LIBDIR}/test/files/noencoding.html
|
|
${GEM_LIBDIR}/test/files/po.xml
|
|
${GEM_LIBDIR}/test/files/po.xsd
|
|
${GEM_LIBDIR}/test/files/saml/saml20assertion_schema.xsd
|
|
${GEM_LIBDIR}/test/files/saml/saml20protocol_schema.xsd
|
|
${GEM_LIBDIR}/test/files/saml/xenc_schema.xsd
|
|
${GEM_LIBDIR}/test/files/saml/xmldsig_schema.xsd
|
|
${GEM_LIBDIR}/test/files/shift_jis.html
|
|
${GEM_LIBDIR}/test/files/shift_jis.xml
|
|
${GEM_LIBDIR}/test/files/shift_jis_no_charset.html
|
|
${GEM_LIBDIR}/test/files/slow-xpath.xml
|
|
${GEM_LIBDIR}/test/files/snuggles.xml
|
|
${GEM_LIBDIR}/test/files/staff.dtd
|
|
${GEM_LIBDIR}/test/files/staff.xml
|
|
${GEM_LIBDIR}/test/files/staff.xslt
|
|
${GEM_LIBDIR}/test/files/test_document_url/bar.xml
|
|
${GEM_LIBDIR}/test/files/test_document_url/document.dtd
|
|
${GEM_LIBDIR}/test/files/test_document_url/document.xml
|
|
${GEM_LIBDIR}/test/files/tlm.html
|
|
${GEM_LIBDIR}/test/files/to_be_xincluded.xml
|
|
${GEM_LIBDIR}/test/files/valid_bar.xml
|
|
${GEM_LIBDIR}/test/files/xinclude.xml
|
|
${GEM_LIBDIR}/test/helper.rb
|
|
${GEM_LIBDIR}/test/html/sax/test_parser.rb
|
|
${GEM_LIBDIR}/test/html/sax/test_parser_context.rb
|
|
${GEM_LIBDIR}/test/html/sax/test_push_parser.rb
|
|
${GEM_LIBDIR}/test/html/test_builder.rb
|
|
${GEM_LIBDIR}/test/html/test_document.rb
|
|
${GEM_LIBDIR}/test/html/test_document_encoding.rb
|
|
${GEM_LIBDIR}/test/html/test_document_fragment.rb
|
|
${GEM_LIBDIR}/test/html/test_element_description.rb
|
|
${GEM_LIBDIR}/test/html/test_named_characters.rb
|
|
${GEM_LIBDIR}/test/html/test_node.rb
|
|
${GEM_LIBDIR}/test/html/test_node_encoding.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_additional_namespaces_in_builder_doc.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_namespaces_aliased_default.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_namespaces_in_builder_doc.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_namespaces_in_cloned_doc.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_namespaces_in_created_doc.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_namespaces_in_parsed_doc.rb
|
|
${GEM_LIBDIR}/test/namespaces/test_namespaces_preservation.rb
|
|
${GEM_LIBDIR}/test/test_convert_xpath.rb
|
|
${GEM_LIBDIR}/test/test_css_cache.rb
|
|
${GEM_LIBDIR}/test/test_encoding_handler.rb
|
|
${GEM_LIBDIR}/test/test_memory_leak.rb
|
|
${GEM_LIBDIR}/test/test_nokogiri.rb
|
|
${GEM_LIBDIR}/test/test_reader.rb
|
|
${GEM_LIBDIR}/test/test_soap4r_sax.rb
|
|
${GEM_LIBDIR}/test/test_xslt_transforms.rb
|
|
${GEM_LIBDIR}/test/xml/node/test_save_options.rb
|
|
${GEM_LIBDIR}/test/xml/node/test_subclass.rb
|
|
${GEM_LIBDIR}/test/xml/sax/test_parser.rb
|
|
${GEM_LIBDIR}/test/xml/sax/test_parser_context.rb
|
|
${GEM_LIBDIR}/test/xml/sax/test_push_parser.rb
|
|
${GEM_LIBDIR}/test/xml/test_attr.rb
|
|
${GEM_LIBDIR}/test/xml/test_attribute_decl.rb
|
|
${GEM_LIBDIR}/test/xml/test_builder.rb
|
|
${GEM_LIBDIR}/test/xml/test_c14n.rb
|
|
${GEM_LIBDIR}/test/xml/test_cdata.rb
|
|
${GEM_LIBDIR}/test/xml/test_comment.rb
|
|
${GEM_LIBDIR}/test/xml/test_document.rb
|
|
${GEM_LIBDIR}/test/xml/test_document_encoding.rb
|
|
${GEM_LIBDIR}/test/xml/test_document_fragment.rb
|
|
${GEM_LIBDIR}/test/xml/test_dtd.rb
|
|
${GEM_LIBDIR}/test/xml/test_dtd_encoding.rb
|
|
${GEM_LIBDIR}/test/xml/test_element_content.rb
|
|
${GEM_LIBDIR}/test/xml/test_element_decl.rb
|
|
${GEM_LIBDIR}/test/xml/test_entity_decl.rb
|
|
${GEM_LIBDIR}/test/xml/test_entity_reference.rb
|
|
${GEM_LIBDIR}/test/xml/test_namespace.rb
|
|
${GEM_LIBDIR}/test/xml/test_node.rb
|
|
${GEM_LIBDIR}/test/xml/test_node_attributes.rb
|
|
${GEM_LIBDIR}/test/xml/test_node_encoding.rb
|
|
${GEM_LIBDIR}/test/xml/test_node_inheritance.rb
|
|
${GEM_LIBDIR}/test/xml/test_node_reparenting.rb
|
|
${GEM_LIBDIR}/test/xml/test_node_set.rb
|
|
${GEM_LIBDIR}/test/xml/test_parse_options.rb
|
|
${GEM_LIBDIR}/test/xml/test_processing_instruction.rb
|
|
${GEM_LIBDIR}/test/xml/test_reader_encoding.rb
|
|
${GEM_LIBDIR}/test/xml/test_relax_ng.rb
|
|
${GEM_LIBDIR}/test/xml/test_schema.rb
|
|
${GEM_LIBDIR}/test/xml/test_syntax_error.rb
|
|
${GEM_LIBDIR}/test/xml/test_text.rb
|
|
${GEM_LIBDIR}/test/xml/test_unparented_node.rb
|
|
${GEM_LIBDIR}/test/xml/test_xinclude.rb
|
|
${GEM_LIBDIR}/test/xml/test_xpath.rb
|
|
${GEM_LIBDIR}/test/xslt/test_custom_functions.rb
|
|
${GEM_LIBDIR}/test/xslt/test_exception_handling.rb
|
|
${GEM_LIBDIR}/test_all
|
|
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|