gss 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (390) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +22 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +2 -0
  7. data/gss.gemspec +25 -0
  8. data/lib/gss.rb +62 -0
  9. data/lib/gss/version.rb +3 -0
  10. data/vendor/bundle/ruby/1.9.1/bin/nokogiri +23 -0
  11. data/vendor/bundle/ruby/1.9.1/bin/nokogiri.bat +6 -0
  12. data/vendor/bundle/ruby/1.9.1/bin/rake +23 -0
  13. data/vendor/bundle/ruby/1.9.1/bin/rake.bat +6 -0
  14. data/vendor/bundle/ruby/1.9.1/build_info/certified-0.1.2.info +1 -0
  15. data/vendor/bundle/ruby/1.9.1/build_info/mini_portile-0.6.0.info +1 -0
  16. data/vendor/bundle/ruby/1.9.1/build_info/nokogiri-1.6.2.1-x86-mingw32.info +1 -0
  17. data/vendor/bundle/ruby/1.9.1/build_info/rake-0.9.2.2.info +1 -0
  18. data/vendor/bundle/ruby/1.9.1/gems/certified-0.1.2/README.md +5 -0
  19. data/vendor/bundle/ruby/1.9.1/gems/certified-0.1.2/certified.rb +20 -0
  20. data/vendor/bundle/ruby/1.9.1/gems/certified-0.1.2/certs/ca-bundle.crt +3376 -0
  21. data/vendor/bundle/ruby/1.9.1/gems/mini_portile-0.6.0/History.txt +86 -0
  22. data/vendor/bundle/ruby/1.9.1/gems/mini_portile-0.6.0/LICENSE.txt +20 -0
  23. data/vendor/bundle/ruby/1.9.1/gems/mini_portile-0.6.0/README.rdoc +169 -0
  24. data/vendor/bundle/ruby/1.9.1/gems/mini_portile-0.6.0/Rakefile +53 -0
  25. data/vendor/bundle/ruby/1.9.1/gems/mini_portile-0.6.0/examples/Rakefile +113 -0
  26. data/vendor/bundle/ruby/1.9.1/gems/mini_portile-0.6.0/lib/mini_portile.rb +437 -0
  27. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/.autotest +26 -0
  28. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/.editorconfig +17 -0
  29. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/.gemtest +0 -0
  30. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/.travis.yml +27 -0
  31. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/CHANGELOG.ja.rdoc +889 -0
  32. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/CHANGELOG.rdoc +898 -0
  33. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/C_CODING_STYLE.rdoc +33 -0
  34. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/Gemfile +21 -0
  35. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/Manifest.txt +377 -0
  36. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/README.ja.rdoc +111 -0
  37. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/README.rdoc +180 -0
  38. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ROADMAP.md +89 -0
  39. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/Rakefile +356 -0
  40. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/STANDARD_RESPONSES.md +47 -0
  41. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/Y_U_NO_GEMSPEC.md +155 -0
  42. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/bin/nokogiri +78 -0
  43. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/build_all +130 -0
  44. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/dependencies.yml +4 -0
  45. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/depend +358 -0
  46. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/extconf.rb +543 -0
  47. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_document.c +170 -0
  48. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_document.h +10 -0
  49. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_element_description.c +279 -0
  50. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_element_description.h +10 -0
  51. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_entity_lookup.c +32 -0
  52. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_entity_lookup.h +8 -0
  53. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_sax_parser_context.c +116 -0
  54. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_sax_parser_context.h +11 -0
  55. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_sax_push_parser.c +87 -0
  56. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/html_sax_push_parser.h +9 -0
  57. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/nokogiri.c +148 -0
  58. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/nokogiri.h +164 -0
  59. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_attr.c +94 -0
  60. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_attr.h +9 -0
  61. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_attribute_decl.c +70 -0
  62. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_attribute_decl.h +9 -0
  63. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_cdata.c +56 -0
  64. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_cdata.h +9 -0
  65. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_comment.c +54 -0
  66. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_comment.h +9 -0
  67. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_document.c +577 -0
  68. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_document.h +23 -0
  69. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_document_fragment.c +48 -0
  70. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_document_fragment.h +10 -0
  71. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_dtd.c +202 -0
  72. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_dtd.h +10 -0
  73. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_element_content.c +123 -0
  74. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_element_content.h +10 -0
  75. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_element_decl.c +69 -0
  76. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_element_decl.h +9 -0
  77. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_encoding_handler.c +79 -0
  78. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_encoding_handler.h +8 -0
  79. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_entity_decl.c +110 -0
  80. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_entity_decl.h +10 -0
  81. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_entity_reference.c +52 -0
  82. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_entity_reference.h +9 -0
  83. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_io.c +56 -0
  84. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_io.h +11 -0
  85. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  86. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  87. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_namespace.c +78 -0
  88. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_namespace.h +13 -0
  89. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_node.c +1603 -0
  90. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_node.h +13 -0
  91. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_node_set.c +467 -0
  92. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_node_set.h +14 -0
  93. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_processing_instruction.c +56 -0
  94. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_processing_instruction.h +9 -0
  95. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_reader.c +681 -0
  96. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_reader.h +10 -0
  97. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_relax_ng.c +161 -0
  98. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_relax_ng.h +9 -0
  99. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_sax_parser.c +312 -0
  100. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_sax_parser.h +39 -0
  101. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_sax_parser_context.c +262 -0
  102. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_sax_parser_context.h +10 -0
  103. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_sax_push_parser.c +115 -0
  104. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_sax_push_parser.h +9 -0
  105. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_schema.c +205 -0
  106. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_schema.h +9 -0
  107. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_syntax_error.c +63 -0
  108. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_syntax_error.h +13 -0
  109. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_text.c +52 -0
  110. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_text.h +9 -0
  111. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_xpath_context.c +307 -0
  112. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xml_xpath_context.h +10 -0
  113. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xslt_stylesheet.c +270 -0
  114. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/ext/nokogiri/xslt_stylesheet.h +14 -0
  115. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri.rb +137 -0
  116. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css.rb +27 -0
  117. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/node.rb +52 -0
  118. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/parser.rb +715 -0
  119. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/parser.y +249 -0
  120. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/parser_extras.rb +91 -0
  121. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/syntax_error.rb +7 -0
  122. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/tokenizer.rb +152 -0
  123. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/tokenizer.rex +55 -0
  124. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/css/xpath_visitor.rb +219 -0
  125. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/decorators/slop.rb +35 -0
  126. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html.rb +37 -0
  127. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/builder.rb +35 -0
  128. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/document.rb +333 -0
  129. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/document_fragment.rb +41 -0
  130. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/element_description.rb +23 -0
  131. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/element_description_defaults.rb +671 -0
  132. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/entity_lookup.rb +13 -0
  133. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/sax/parser.rb +52 -0
  134. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/sax/parser_context.rb +16 -0
  135. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/html/sax/push_parser.rb +16 -0
  136. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/syntax_error.rb +4 -0
  137. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/version.rb +106 -0
  138. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml.rb +73 -0
  139. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/attr.rb +14 -0
  140. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/attribute_decl.rb +18 -0
  141. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/builder.rb +443 -0
  142. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/cdata.rb +11 -0
  143. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/character_data.rb +7 -0
  144. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/document.rb +279 -0
  145. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/document_fragment.rb +112 -0
  146. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/dtd.rb +32 -0
  147. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/element_content.rb +36 -0
  148. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/element_decl.rb +13 -0
  149. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/entity_decl.rb +19 -0
  150. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/namespace.rb +13 -0
  151. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/node.rb +982 -0
  152. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/node/save_options.rb +61 -0
  153. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/node_set.rb +355 -0
  154. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/notation.rb +6 -0
  155. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/parse_options.rb +98 -0
  156. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/pp.rb +2 -0
  157. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/pp/character_data.rb +18 -0
  158. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/pp/node.rb +56 -0
  159. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/processing_instruction.rb +8 -0
  160. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/reader.rb +112 -0
  161. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/relax_ng.rb +32 -0
  162. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/sax.rb +4 -0
  163. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/sax/document.rb +171 -0
  164. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/sax/parser.rb +123 -0
  165. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  166. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  167. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/schema.rb +63 -0
  168. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/syntax_error.rb +47 -0
  169. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/text.rb +9 -0
  170. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/xpath.rb +10 -0
  171. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  172. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xml/xpath_context.rb +16 -0
  173. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xslt.rb +56 -0
  174. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/nokogiri/xslt/stylesheet.rb +25 -0
  175. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/lib/xsd/xmlparser/nokogiri.rb +102 -0
  176. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/suppressions/README.txt +1 -0
  177. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/suppressions/nokogiri_ree-1.8.7.358.supp +61 -0
  178. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/suppressions/nokogiri_ruby-1.8.7.370.supp +0 -0
  179. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/suppressions/nokogiri_ruby-1.9.2.320.supp +28 -0
  180. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/suppressions/nokogiri_ruby-1.9.3.327.supp +28 -0
  181. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/tasks/nokogiri.org.rb +24 -0
  182. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/tasks/test.rb +95 -0
  183. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/css/test_nthiness.rb +222 -0
  184. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/css/test_parser.rb +358 -0
  185. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/css/test_tokenizer.rb +198 -0
  186. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/css/test_xpath_visitor.rb +96 -0
  187. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/decorators/test_slop.rb +16 -0
  188. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/2ch.html +108 -0
  189. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/address_book.rlx +12 -0
  190. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/address_book.xml +10 -0
  191. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/atom.xml +344 -0
  192. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/bar/bar.xsd +4 -0
  193. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/bogus.xml +0 -0
  194. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/dont_hurt_em_why.xml +422 -0
  195. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/encoding.html +82 -0
  196. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/encoding.xhtml +84 -0
  197. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/exslt.xml +8 -0
  198. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/exslt.xslt +35 -0
  199. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/foo/foo.xsd +4 -0
  200. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/metacharset.html +10 -0
  201. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/noencoding.html +47 -0
  202. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/po.xml +32 -0
  203. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/po.xsd +66 -0
  204. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/saml/saml20assertion_schema.xsd +283 -0
  205. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/saml/saml20protocol_schema.xsd +302 -0
  206. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/saml/xenc_schema.xsd +146 -0
  207. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/saml/xmldsig_schema.xsd +318 -0
  208. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/shift_jis.html +10 -0
  209. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/shift_jis.xml +5 -0
  210. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/shift_jis_no_charset.html +9 -0
  211. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/slow-xpath.xml +25509 -0
  212. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/snuggles.xml +3 -0
  213. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/staff.dtd +10 -0
  214. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/staff.xml +59 -0
  215. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/staff.xslt +32 -0
  216. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/test_document_url/bar.xml +2 -0
  217. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/test_document_url/document.dtd +4 -0
  218. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/test_document_url/document.xml +6 -0
  219. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/tlm.html +850 -0
  220. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/to_be_xincluded.xml +2 -0
  221. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/valid_bar.xml +2 -0
  222. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/files/xinclude.xml +4 -0
  223. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/helper.rb +164 -0
  224. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/sax/test_parser.rb +141 -0
  225. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/sax/test_parser_context.rb +46 -0
  226. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_builder.rb +164 -0
  227. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_document.rb +619 -0
  228. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_document_encoding.rb +148 -0
  229. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_document_fragment.rb +267 -0
  230. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_element_description.rb +105 -0
  231. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_named_characters.rb +14 -0
  232. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_node.rb +196 -0
  233. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/html/test_node_encoding.rb +27 -0
  234. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
  235. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_namespaces_aliased_default.rb +24 -0
  236. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
  237. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_namespaces_in_cloned_doc.rb +31 -0
  238. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
  239. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_namespaces_in_parsed_doc.rb +66 -0
  240. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/namespaces/test_namespaces_preservation.rb +31 -0
  241. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_convert_xpath.rb +135 -0
  242. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_css_cache.rb +45 -0
  243. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_encoding_handler.rb +46 -0
  244. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_memory_leak.rb +156 -0
  245. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_nokogiri.rb +138 -0
  246. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_reader.rb +558 -0
  247. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_soap4r_sax.rb +52 -0
  248. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/test_xslt_transforms.rb +279 -0
  249. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/node/test_save_options.rb +28 -0
  250. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/node/test_subclass.rb +44 -0
  251. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/sax/test_parser.rb +382 -0
  252. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/sax/test_parser_context.rb +115 -0
  253. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/sax/test_push_parser.rb +157 -0
  254. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_attr.rb +64 -0
  255. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_attribute_decl.rb +86 -0
  256. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_builder.rb +315 -0
  257. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_c14n.rb +161 -0
  258. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_cdata.rb +48 -0
  259. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_comment.rb +29 -0
  260. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_document.rb +934 -0
  261. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_document_encoding.rb +28 -0
  262. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_document_fragment.rb +228 -0
  263. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_dtd.rb +187 -0
  264. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_dtd_encoding.rb +33 -0
  265. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_element_content.rb +56 -0
  266. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_element_decl.rb +73 -0
  267. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_entity_decl.rb +122 -0
  268. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_entity_reference.rb +245 -0
  269. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_namespace.rb +95 -0
  270. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_node.rb +1155 -0
  271. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_node_attributes.rb +113 -0
  272. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_node_encoding.rb +107 -0
  273. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_node_inheritance.rb +32 -0
  274. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_node_reparenting.rb +374 -0
  275. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_node_set.rb +755 -0
  276. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_parse_options.rb +64 -0
  277. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_processing_instruction.rb +30 -0
  278. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_reader_encoding.rb +142 -0
  279. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_relax_ng.rb +60 -0
  280. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_schema.rb +129 -0
  281. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_syntax_error.rb +12 -0
  282. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_text.rb +60 -0
  283. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_unparented_node.rb +422 -0
  284. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_xinclude.rb +83 -0
  285. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xml/test_xpath.rb +382 -0
  286. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xslt/test_custom_functions.rb +133 -0
  287. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test/xslt/test_exception_handling.rb +37 -0
  288. data/vendor/bundle/ruby/1.9.1/gems/nokogiri-1.6.2.1-x86-mingw32/test_all +81 -0
  289. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/.gemtest +0 -0
  290. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/CHANGES +522 -0
  291. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/MIT-LICENSE +21 -0
  292. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/README.rdoc +197 -0
  293. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/Rakefile +369 -0
  294. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/TODO +20 -0
  295. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/bin/rake +33 -0
  296. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/install.rb +90 -0
  297. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake.rb +69 -0
  298. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/alt_system.rb +109 -0
  299. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/application.rb +595 -0
  300. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/classic_namespace.rb +11 -0
  301. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/clean.rb +32 -0
  302. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/cloneable.rb +25 -0
  303. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/contrib/compositepublisher.rb +21 -0
  304. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/contrib/ftptools.rb +150 -0
  305. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/contrib/publisher.rb +73 -0
  306. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  307. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/contrib/sshpublisher.rb +50 -0
  308. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/contrib/sys.rb +191 -0
  309. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/default_loader.rb +10 -0
  310. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/dsl_definition.rb +176 -0
  311. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/early_time.rb +18 -0
  312. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/ext/core.rb +27 -0
  313. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/ext/module.rb +39 -0
  314. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/ext/string.rb +167 -0
  315. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/ext/time.rb +14 -0
  316. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/file_creation_task.rb +24 -0
  317. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/file_list.rb +403 -0
  318. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/file_task.rb +47 -0
  319. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/file_utils.rb +114 -0
  320. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/file_utils_ext.rb +145 -0
  321. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/gempackagetask.rb +15 -0
  322. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/invocation_chain.rb +51 -0
  323. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/invocation_exception_mixin.rb +16 -0
  324. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/loaders/makefile.rb +40 -0
  325. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/multi_task.rb +16 -0
  326. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/name_space.rb +25 -0
  327. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/packagetask.rb +185 -0
  328. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/pathmap.rb +1 -0
  329. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/pseudo_status.rb +24 -0
  330. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/rake_module.rb +29 -0
  331. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/rake_test_loader.rb +22 -0
  332. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/rdoctask.rb +234 -0
  333. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/ruby182_test_unit_fix.rb +25 -0
  334. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  335. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/runtest.rb +21 -0
  336. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/task.rb +327 -0
  337. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/task_argument_error.rb +7 -0
  338. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/task_arguments.rb +78 -0
  339. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/task_manager.rb +307 -0
  340. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/tasklib.rb +22 -0
  341. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/testtask.rb +191 -0
  342. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/version.rb +8 -0
  343. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/lib/rake/win32.rb +55 -0
  344. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/file_creation.rb +34 -0
  345. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/helper.rb +492 -0
  346. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake.rb +40 -0
  347. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_application.rb +489 -0
  348. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_application_options.rb +335 -0
  349. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_clean.rb +14 -0
  350. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_definitions.rb +80 -0
  351. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_directory_task.rb +46 -0
  352. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_dsl.rb +77 -0
  353. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_early_time.rb +31 -0
  354. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_extension.rb +59 -0
  355. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_file_creation_task.rb +56 -0
  356. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_file_list.rb +628 -0
  357. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_file_list_path_map.rb +8 -0
  358. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_file_task.rb +102 -0
  359. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_file_utils.rb +305 -0
  360. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_ftp_file.rb +59 -0
  361. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_functional.rb +450 -0
  362. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_invocation_chain.rb +52 -0
  363. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_makefile_loader.rb +44 -0
  364. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_multi_task.rb +51 -0
  365. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_name_space.rb +43 -0
  366. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_package_task.rb +79 -0
  367. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_path_map.rb +157 -0
  368. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_path_map_explode.rb +34 -0
  369. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_path_map_partial.rb +18 -0
  370. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_pseudo_status.rb +21 -0
  371. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_rake_test_loader.rb +21 -0
  372. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_rdoc_task.rb +83 -0
  373. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_require.rb +40 -0
  374. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_rules.rb +327 -0
  375. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task.rb +267 -0
  376. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task_argument_parsing.rb +103 -0
  377. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task_arguments.rb +88 -0
  378. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task_lib.rb +9 -0
  379. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task_manager.rb +157 -0
  380. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task_manager_argument_resolution.rb +36 -0
  381. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_task_with_arguments.rb +173 -0
  382. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_test_task.rb +120 -0
  383. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_top_level_functions.rb +111 -0
  384. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_rake_win32.rb +72 -0
  385. data/vendor/bundle/ruby/1.9.1/gems/rake-0.9.2.2/test/test_sys.rb +20 -0
  386. data/vendor/bundle/ruby/1.9.1/specifications/certified-0.1.2.gemspec +20 -0
  387. data/vendor/bundle/ruby/1.9.1/specifications/mini_portile-0.6.0.gemspec +24 -0
  388. data/vendor/bundle/ruby/1.9.1/specifications/nokogiri-1.6.2.1-x86-mingw32.gemspec +73 -0
  389. data/vendor/bundle/ruby/1.9.1/specifications/rake-0.9.2.2.gemspec +37 -0
  390. metadata +489 -0
@@ -0,0 +1,898 @@
1
+ === 1.6.2.1
2
+
3
+ ==== Bug fix
4
+
5
+ * Fix statically-linked libxml2 installation when using universal builds of Ruby. #1104
6
+ * Patching `mini_portile` to address the git dependency detailed in #1102.
7
+
8
+
9
+ === 1.6.2 / 2014-05-12
10
+
11
+ ==== Security Note
12
+
13
+ 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:
14
+
15
+ * https://git.gnome.org/browse/libxml2/commit/?id=4629ee02ac649c27f9c0cf98ba017c6b5526070f
16
+ * CVE-2013-2877 https://git.gnome.org/browse/libxml2/commit/?id=e50ba8164eee06461c73cd8abb9b46aa0be81869
17
+ * CVE-2014-0191 https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df
18
+
19
+ It is recommended that you upgrade from 1.6.x to this version as soon as possible.
20
+
21
+ ==== Compatibility Note
22
+
23
+ Now requires libxml >= 2.6.21 (was previously >= 2.6.17).
24
+
25
+ ==== Features
26
+
27
+ * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32) and add support for native builds on Windows. #864, #989, #1072
28
+ * (MRI) Alias CP932 to Windows-31J if iconv does not support Windows-31J.
29
+ * (MRI) Nokogiri now links packaged libraries statically. To disable static linking, pass --disable-static to extconf.rb. #923
30
+ * (MRI) Fix a library path (LIBPATH) precedence problem caused by CRuby bug #9760.
31
+ * (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
32
+ * (MRI) Nokogiri now builds libxml2 properly with iconv support on platforms where libiconv is installed outside the system default directories, such as FreeBSD.
33
+ * Add support for an-b in nth selectors. #886 (Thanks, Magnus Bergmark!)
34
+ * Add support for bare and multiple :not() functions in selectors. #887 (Thanks, Magnus Bergmark!)
35
+ * (MRI) Add an extconf.rb option --use-system-libraries, alternative to setting the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES.
36
+ * (MRI) Update packaged libraries: libxslt to 1.1.28, zlib to 1.2.8, and libiconv to 1.14, respectively.
37
+ * 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.
38
+ * Nokogiri::XML::DTD#html_dtd? and #html5_dtd? are added.
39
+ * Nokogiri::XML::Node#prepend_child is added. #664
40
+ * Nokogiri::XML::SAX::ParserContext#recovery is added. #453
41
+ * Fix documentation for XML::Node#namespace. #803 #802 (Thanks, Hoylen Sue)
42
+ * Allow Nokogiri::XML::Node#parse from unparented non-element nodes. #407
43
+
44
+ ==== Bugfixes
45
+
46
+ * Ensure :only-child pseudo class works within :not pseudo class. #858 (Thanks, Yamagishi Kazutoshi!)
47
+ * Don't call pkg_config when using bundled libraries in extconf.rb #931 (Thanks, Shota Fukumori!)
48
+ * Nokogiri.parse() does not mistake a non-HTML document like a RSS document as HTML document. #932 (Thanks, Yamagishi Kazutoshi!)
49
+ * (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
50
+ * (JRuby) XSD validation crashes in Java version. #373
51
+ * (JRuby) Document already has a root node error while using Builder. #646
52
+ * (JRuby) c14n tests are all passing on JRuby. #226
53
+ * Parsing empty documents raise SyntaxError in strict mode. #1005
54
+ * (JRuby) Make xpath faster by caching the xpath context. #741
55
+ * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
56
+ * (JRuby) Inconsistent behavior aliasing the default namespace. #940
57
+ * (JRuby) Inconsistent behavior between parsing and adding namespaces. #943
58
+ * (JRuby) Xpath returns inconsistent result set on cloned document with namespaces and attributes. #1034
59
+ * (JRuby) Java-Implementation forgets element namespaces #902
60
+ * (JRuby) JRuby-Nokogiri does not recognise attributes inside namespaces #1081
61
+ * (JRuby) JRuby-Nokogiri has different comment node name #1080
62
+ * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processing #1070
63
+
64
+ === 1.6.1 / 2013-12-14
65
+
66
+ * Bugfixes
67
+
68
+ * (JRuby) Fix out of memory bug when certain invalid documents are parsed.
69
+ * (JRuby) Fix regression of billion-laughs vulnerability. #586
70
+
71
+
72
+ === 1.6.0 / 2013-06-08
73
+
74
+ This release was based on v1.5.10 and 1.6.0.rc1, and contains changes
75
+ mentioned in both.
76
+
77
+ * Deprecations
78
+
79
+ * Remove pre 1.9 monitoring from Travis.
80
+
81
+
82
+ === 1.6.0.rc1 / 2013-04-14
83
+
84
+ This release was based on v1.5.9, and so does not contain any fixes
85
+ mentioned in the notes for v1.5.10.
86
+
87
+ * Notes
88
+
89
+ * mini_portile is now a runtime dependency
90
+ * Ruby 1.9.2 and higher now required
91
+
92
+
93
+ * Features
94
+
95
+ * (MRI) Source code for libxml 2.8.0 and libxslt 1.2.26 is packaged
96
+ with the gem. These libraries are compiled at gem install time
97
+ unless the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES is
98
+ set. VERSION_INFO (also `nokogiri -v`) exposes whether libxml was
99
+ compiled from packaged source, or the system library was used.
100
+ * (Windows) libxml upgraded to 2.8.0
101
+
102
+
103
+ * Deprecations
104
+
105
+ * Support for Ruby 1.8.7 and prior has been dropped
106
+
107
+
108
+ === 1.5.11 / 2013-12-14
109
+
110
+ * Bugfixes
111
+
112
+ * (JRuby) Fix out of memory bug when certain invalid documents are parsed.
113
+ * (JRuby) Fix regression of billion-laughs vulnerability. #586
114
+
115
+
116
+ === 1.5.10 / 2013-06-07
117
+
118
+ * Bugfixes
119
+
120
+ * (JRuby) Fix "null document" error when parsing an empty IO in jruby 1.7.3. #883
121
+ * (JRuby) Fix schema validation when XSD has DOCTYPE set to DTD. #912 (Thanks, Patrick Cheng!)
122
+ * (MRI) Fix segfault when there is no default subelement for an HTML node. #917
123
+
124
+
125
+ * Notes
126
+
127
+ * Use rb_ary_entry instead of RARRAY_PTR (you know, for Rubinius). #877 (Thanks, Dirkjan Bussink!)
128
+ * Fix TypeError when running tests. #900 (Thanks, Cédric Boutillier!)
129
+
130
+
131
+ === 1.5.9 / 2013-03-21
132
+
133
+ * Bugfixes
134
+
135
+ * Ensure that prefixed attributes are properly namespaced when reparented. #869
136
+ * Fix for inconsistent namespaced attribute access for SVG nested in HTML. #861
137
+ * (MRI) Fixed a memory leak in fragment parsing if nodes are not all subsequently reparented. #856
138
+
139
+
140
+ === 1.5.8 / 2013-03-19
141
+
142
+ * Bugfixes
143
+
144
+ * (JRuby) Fix EmptyStackException thrown by elements with xlink:href attributes and no base_uri #534, #805. (Thanks, Patrick Quinn and Brian Hoffman!)
145
+ * Fixes duplicate attributes issue introduced in 1.5.7. #865
146
+ * Allow use of a prefixed namespace on a root node using Nokogiri::XML::Builder #868
147
+
148
+
149
+ === 1.5.7 / 2013-03-18
150
+
151
+ * Features
152
+
153
+ * Windows support for Ruby 2.0.
154
+
155
+
156
+ * Bugfixes
157
+
158
+ * SAX::Parser.parse_io throw an error when used with lower case encoding. #828
159
+ * (JRuby) Java Nokogiri is finally green (passes all tests) under 1.8 and 1.9 mode. High five everyone. #798, #705
160
+ * (JRuby) Nokogiri::XML::Reader broken (as a pull parser) on jruby - reads the whole XML document. #831
161
+ * (JRuby) JRuby hangs parsing "&". #837
162
+ * (JRuby) JRuby NPE parsing an invalid XML instruction. #838
163
+ * (JRuby) Node#content= incompatibility. #839
164
+ * (JRuby) to_xhtml doesn't print the last slash for self-closing tags in JRuby. #834
165
+ * (JRuby) Adding an EntityReference after a Text node mangles the entity in JRuby. #835
166
+ * (JRuby) JRuby version inconsistency: nil for empty attributes. #818
167
+ * CSS queries for classes (e.g., ".foo") now treat all whitespace identically. #854
168
+ * Namespace behavior cleaned up and made consistent between JRuby and MRI. #846, #801 (Thanks, Michael Klein!)
169
+ * (MRI) SAX parser handles empty processing instructions. #845
170
+
171
+
172
+ === 1.5.6 / 2012-12-19
173
+
174
+ * Features
175
+
176
+ * Improved performance of XML::Document#collect_namespaces. #761 (Thanks, Juergen Mangler!)
177
+ * New callback SAX::Document#processing_instruction (Thanks, Kitaiti Makoto!)
178
+ * Node#native_content= allows setting unescaped node contant. #768
179
+ * XPath lookup with namespaces supports symbol keys. #729 (Thanks, Ben Langfeld.)
180
+ * XML::Node#[]= stringifies values. #729 (Thanks, Ben Langfeld.)
181
+ * bin/nokogiri will process a document from $stdin
182
+ * bin/nokogiri -e will execute a program from the command line
183
+ * (JRuby) bin/nokogiri --version will print the Xerces and NekoHTML versions.
184
+
185
+
186
+ * Bugfixes
187
+
188
+ * Nokogiri now detects XSLT transform errors. #731 (Thanks, Justin Fitzsimmons!)
189
+ * Don't throw an Error when trying to replace top-level text node in DocumentFragment. #775
190
+ * Raise an ArgumentError if an invalid encoding is passed to the SAX parser. #756 (Thanks, Bradley Schaefer!)
191
+ * Prefixed element inconsistency between CRuby and JRuby. #712
192
+ * (JRuby) space prior to xml preamble causes nokogiri to fail parsing. (fixed along with #748) #790
193
+ * (JRuby) Fixed the bug Nokogiri::XML::Node#content inconsistency between Java and C. #794, #797
194
+ * (JRuby) raises INVALID_CHARACTER_ERR exception when EntityReference name starts with '#'. #719
195
+ * (JRuby) doesn't coerce namespaces out of strings on a direct subclass of Node. #715
196
+ * (JRuby) Node#content now renders newlines properly. #737 (Thanks, Piotr Szmielew!)
197
+ * (JRuby) Unknown namespace are ignore when the recover option is used. #748
198
+ * (JRuby) XPath queries for namespaces should not throw exceptions when called twice in a row. #764
199
+ * (JRuby) More consistent (with libxml2) whitespace formatting when emitting XML. #771
200
+ * (JRuby) namespaced attributes broken when appending raw xml to builder. #770
201
+ * (JRuby) Nokogiri::XML::Document#wrap raises undefined method `length' for nil:NilClass when trying to << to a node. #781
202
+ * (JRuby) Fixed "bad file descriptor" bug when closing open file descriptors. #495
203
+ * (JRuby) JRuby/CRuby incompatibility for attribute decorators. #785
204
+ * (JRuby) Issues parsing valid XML with no internal subset in the DTD. #547, #811
205
+ * (JRuby) Issues parsing valid node content when it contains colons. #728
206
+ * (JRuby) Correctly parse the doc type of html documents. #733
207
+ * (JRuby) Include dtd in the xml output when a builder is used with create_internal_subset. #751
208
+ * (JRuby) builder requires textwrappers for valid utf8 in jruby, not in mri. #784
209
+
210
+
211
+ === 1.5.5 / 2012-06-24
212
+
213
+ * Features
214
+
215
+ * Much-improved support for JRuby in 1.9 mode! Yay!
216
+
217
+ * Bugfixes
218
+
219
+ * Regression in JRuby Nokogiri add_previous_sibling (1.5.0 -> 1.5.1) #691 (Thanks, John Shahid!)
220
+ * JRuby unable to create HTML doc if URL arg provided #674 (Thanks, John Shahid!)
221
+ * JRuby raises NullPointerException when given HTML document is nil or empty string. #699
222
+ * JRuby 1.9 error, uncaught throw 'encoding_found', has been fixed. #673
223
+ * Invalid encoding returned in JRuby with US-ASCII. #583
224
+ * XmlSaxPushParser raises IndexOutOfBoundsException when over 512 characters are given. #567, #615
225
+ * When xpath evaluation returns empty NodeSet, decorating NodeSet's base document raises exception. #514
226
+ * JRuby raises exception when xpath with namespace is specified. pull request #681 (Thanks, Piotr Szmielew)
227
+ * JRuby renders nodes without their namespace when subclassing Node. #695
228
+ * JRuby raises NAMESPACE_ERR (org.w3c.dom.DOMException) while instantiating RDF::RDFXML::Writer. #683
229
+ * JRuby is not able to use namespaces in xpath. #493
230
+ * JRuby's Entity resolving should be consistent with C-Nokogiri #704, #647, #703
231
+
232
+
233
+ === 1.5.4 / 2012-06-12
234
+
235
+ * Features
236
+
237
+ * The "nokogiri" script now has more verbose output when passed the `--rng` option. #675 (Thanks, Dan Radez!)
238
+ * Build support on hardened Debian systems that use `-Werror=format-security`. #680.
239
+ * Better build support for systems with pkg-config. #584
240
+ * Better build support for systems with multiple iconv installations.
241
+
242
+ * Bugfixes
243
+
244
+ * Segmentation fault when creating a comment node for a DocumentFragment. #677, #678.
245
+ * Treat '.' as xpath in at() and search(). #690
246
+
247
+ * (MRI, Security) Default parse options for XML documents were
248
+ changed to not make network connections during document parsing,
249
+ to avoid XXE vulnerability. #693
250
+
251
+ To re-enable this behavior, the configuration method `nononet` may
252
+ be called, like this:
253
+
254
+ Nokogiri::XML::Document.parse(xml) { |config| config.nononet }
255
+
256
+ Insert your own joke about double-negatives here.
257
+
258
+
259
+ === 1.5.3 / 2012-06-01
260
+
261
+ * Features
262
+
263
+ * Support for "prefixless" CSS selectors ~, > and + like jQuery
264
+ supports. #621, #623. (Thanks, David Lee!)
265
+ * Attempting to improve installation on homebrew 0.9 (with regards
266
+ to iconv). Isn't package management convenient?
267
+
268
+ * Bugfixes
269
+
270
+ * Custom xpath functions with empty nodeset arguments cause a
271
+ segfault. #634.
272
+ * Nokogiri::XML::Node#css now works for XML documents with default
273
+ namespaces when the rule contains attribute selector without
274
+ namespace.
275
+ * Fixed marshalling bugs around how arguments are passed to (and
276
+ returned from) XSLT custom xpath functions. #640.
277
+ * Nokogiri::XML::Reader#outer_xml is broken in JRuby #617
278
+ * Nokogiri::XML::Attribute on JRuby returns a nil namespace #647
279
+ * Nokogiri::XML::Node#namespace= cannot set a namespace without a
280
+ prefix on JRuby #648
281
+ * (JRuby) 1.9 mode causes dead lock while running rake #571
282
+ * HTML::Document#meta_encoding does not raise exception on docs with
283
+ malformed content-type. #655
284
+ * Fixing segfault related to unsupported encodings in in-context
285
+ parsing on 1.8.7. #643
286
+ * (JRuby) Concurrency issue in XPath parsing. #682
287
+
288
+
289
+ === 1.5.2 / 2012-03-09
290
+
291
+ Repackaging of 1.5.1 with a gemspec that is compatible with older Rubies. #631, #632.
292
+
293
+
294
+ === 1.5.1 / 2012-03-09
295
+
296
+ * Features
297
+
298
+ * XML::Builder#comment allows creation of comment nodes.
299
+ * CSS searches now support namespaced attributes. #593
300
+ * Java integration feature is added. Now, XML::Document.wrap
301
+ and XML::Document#to_java methods are available.
302
+ * RelaxNG validator support in the `nokogiri` cli utility. #591 (thanks, Dan Radez!)
303
+
304
+ * Bugfixes
305
+
306
+ * Fix many memory leaks and segfault opportunities. Thanks, Tim Elliott!
307
+ * extconf searches homebrew paths if homebrew is installed.
308
+ * Inconsistent behavior of Nokogiri 1.5.0 Java #620
309
+ * Inheriting from Nokogiri::XML::Node on JRuby (1.6.4/5) fails #560
310
+ * XML::Attr nodes are not allowed to be added as node children, so an
311
+ exception is raised. #558
312
+ * No longer defensively "pickle" adjacent text nodes on
313
+ Node#add_next_sibling and Node#add_previous_sibling calls. #595.
314
+ * Java version inconsistency: it returns nil for empty attributes #589
315
+ * to_xhtml incorrectly generates <p /></p> when tag is empty #557
316
+ * Document#add_child now accepts a Node, NodeSet, DocumentFragment,
317
+ or String. #546.
318
+ * Document#create_element now recognizes namespaces containing
319
+ non-word characters (like "SOAP-ENV"). This is mostly relevant to
320
+ users of Builder, which calls Document#create_element for nearly
321
+ everything. #531.
322
+ * File encoding broken in 1.5.0 / jruby / windows #529
323
+ * Java version does not return namespace defs as attrs for ::HTML #542
324
+ * Bad file descriptor with Nokogiri 1.5.0 #495
325
+ * remove_namespace! doesn't work in pure java version #492
326
+ * The Nokogiri Java native build throws a null pointer exception
327
+ when ActiveSupport's .blank? method is called directly on a parsed
328
+ object. #489
329
+ * 1.5.0 Not using correct character encoding #488
330
+ * Raw XML string in XML Builder broken on JRuby #486
331
+ * Nokogiri 1.5.0 XML generation broken on JRuby #484
332
+ * Do not allow multiple root nodes. #550
333
+ * Fixes for custom XPath functions. #605, #606 (thanks, Juan Wajnerman!)
334
+ * Node#to_xml does not override :save_with if it is provided. #505
335
+ * Node#set is a private method (JRuby). #564 (thanks, Nick Sieger!)
336
+ * C14n cleanup and Node#canonicalize (thanks, Ivan Pirlik!) #563
337
+
338
+
339
+ === 1.5.0 / 2011-07-01
340
+
341
+ * Notes
342
+
343
+ * See changelog from 1.4.7
344
+
345
+ * Features
346
+
347
+ * extracted sets of Node::SaveOptions into Node::SaveOptions::DEFAULT_{X,H,XH}TML (refactor)
348
+
349
+ * Bugfixes
350
+
351
+ * default output of XML on JRuby is no longer formatted due to
352
+ inconsistent whitespace handling. #415
353
+ * (JRuby) making empty NodeSets with null `nodes` member safe to operate on. #443
354
+ * Fix a bug in advanced encoding detection that leads to partially
355
+ duplicated document when parsing an HTML file with unknown
356
+ encoding.
357
+ * Add support for <meta charset="...">.
358
+
359
+
360
+ === 1.5.0 beta3 / 2010/12/02
361
+
362
+ * Notes
363
+
364
+ * JRuby performance tuning
365
+ * See changelog from 1.4.4
366
+
367
+ * Bugfixes
368
+
369
+ * Node#inner_text no longer returns nil. (JRuby) #264
370
+
371
+
372
+ === 1.5.0 beta2 / 2010/07/30
373
+
374
+ * Notes
375
+
376
+ * See changelog from 1.4.3
377
+
378
+
379
+ === 1.5.0 beta1 / 2010/05/22
380
+
381
+ * Notes
382
+
383
+ * JRuby support is provided by a new pure-java backend.
384
+
385
+ * Deprecations
386
+
387
+ * Ruby 1.8.6 is deprecated. Nokogiri will install, but official support is ended.
388
+ * LibXML 2.6.16 and earlier are deprecated. Nokogiri will refuse to install.
389
+ * FFI support is removed.
390
+
391
+
392
+ === 1.4.7 / 2011-07-01
393
+
394
+ * Bugfixes
395
+
396
+ * Fix a bug in advanced encoding detection that leads to partially
397
+ duplicated document when parsing an HTML file with unknown
398
+ encoding. Thanks, Timothy Elliott (@ender672)! #478
399
+
400
+
401
+ === 1.4.6 / 2011-06-19
402
+
403
+ * Notes
404
+
405
+ * This version is functionally identical to 1.4.5.
406
+ * Ruby 1.8.6 support has been restored.
407
+
408
+
409
+ === 1.4.5 / 2011-05-19
410
+
411
+ * New Features
412
+
413
+ * Nokogiri::HTML::Document#title accessor gets and sets the document title.
414
+ * extracted sets of Node::SaveOptions into Node::SaveOptions::DEFAULT_{X,H,XH}TML (refactor)
415
+ * Raise an exception if a string is passed to Nokogiri::XML::Schema#validate. #406
416
+
417
+ * Bugfixes
418
+
419
+ * Node#serialize-and-friends now accepts a SaveOption object as the, erm, save object.
420
+ * Nokogiri::CSS::Parser has-a Nokogiri::CSS::Tokenizer
421
+ * (JRUBY+FFI only) Weak references are now threadsafe. #355
422
+ * Make direct start_element() callback (currently used for
423
+ HTML::SAX::Parser) pass attributes in assoc array, just as
424
+ emulated start_element() callback does. rel. #356
425
+ * HTML::SAX::Parser should call back a block given to parse*() if any, just as XML::SAX::Parser does.
426
+ * Add further encoding detection to HTML parser that libxml2 does not do.
427
+ * Document#remove_namespaces! now handles attributes with namespaces. #396
428
+ * XSLT::Stylesheet#transform no longer segfaults when handed a non-XML::Document. #452
429
+ * XML::Reader no longer segfaults when under GC pressure. #439
430
+
431
+
432
+ === 1.4.4 / 2010-11-15
433
+
434
+ * New Features
435
+
436
+ * XML::Node#children= sets the node's inner html (much like #inner_html=), but returns the reparent node(s).
437
+ * XSLT supports function extensions. #336
438
+ * XPath bind parameter substitution. #329
439
+ * XML::Reader node type constants. #369
440
+ * SAX Parser context provides line and column information
441
+
442
+ * Bugfixes
443
+
444
+ * XML::DTD#attributes returns an empty hash instead of nil when there are no attributes.
445
+ * XML::DTD#{keys,each} now work as expected. #324
446
+ * {XML,HTML}::DocumentFragment.{new,parse} no longer strip leading and trailing whitespace. #319
447
+ * XML::Node#{add_child,add_previous_sibling,add_next_sibling,replace} return a NodeSet when passed a string.
448
+ * Unclosed tags parsed more robustly in fragments. #315
449
+ * XML::Node#{replace,add_previous_sibling,add_next_sibling} edge cases fixed related to libxml's text node merging. #308
450
+ * Fixed a segfault when GC occurs during xpath handler argument marshalling. #345
451
+ * Added hack to Slop decorator to work with previously defined methods. #330
452
+ * Fix a memory leak when duplicating child nodes. #353
453
+ * Fixed off-by-one bug with nth-last-{child,of-type} CSS selectors when NOT using an+b notation. #354
454
+ * Fixed passing of non-namespace attributes to SAX::Document#start_element. #356
455
+ * Workaround for libxml2 in-context parsing bug. #362
456
+ * Fixed NodeSet#wrap on nodes within a fragment. #331
457
+
458
+
459
+ === 1.4.3 / 2010/07/28
460
+
461
+ * New Features
462
+
463
+ * XML::Reader#empty_element? returns true for empty elements. #262
464
+ * Node#remove_namespaces! now removes namespace *declarations* as well. #294
465
+ * NodeSet#at_xpath, NodeSet#at_css and NodeSet#> do what the corresponding
466
+ methods of Node do.
467
+
468
+ * Bugfixes
469
+
470
+ * XML::NodeSet#{include?,delete,push} accept an XML::Namespace
471
+ * XML::Document#parse added for parsing in the context of a document
472
+ * XML::DocumentFragment#inner_html= works with contextual parsing! #298, #281
473
+ * lib/nokogiri/css/parser.y Combined CSS functions + pseudo selectors fixed
474
+ * Reparenting text nodes is safe, even when the operation frees adjacent merged nodes. #283
475
+ * Fixed libxml2 versionitis issue with xmlFirstElementChild et al. #303
476
+ * XML::Attr#add_namespace now works as expected. #252
477
+ * HTML::DocumentFragment uses the string's encoding. #305
478
+ * Fix the CSS3 selector translation rule for the general sibling combinator
479
+ (a.k.a. preceding selector) that incorrectly converted "E ~ F G" to
480
+ "//F//G[preceding-sibling::E]".
481
+
482
+
483
+ === 1.4.2 / 2010/05/22
484
+
485
+ * New Features
486
+
487
+ * XML::Node#parse will parse XML or HTML fragments with respect to the
488
+ context node.
489
+ * XML::Node#namespaces returns all namespaces defined in the node and all
490
+ ancestor nodes
491
+ (previously did not return ancestors' namespace definitions).
492
+ * Added Enumerable to XML::Node
493
+ * Nokogiri::XML::Schema#validate now uses xmlSchemaValidateFile if a
494
+ filename is passed, which is faster and more memory-efficient. GH #219
495
+ * XML::Document#create_entity will create new EntityDecl objects. GH #174
496
+ * JRuby FFI implementation no longer uses ObjectSpace._id2ref,
497
+ instead using Charles Nutter's rocking Weakling gem.
498
+ * Nokogiri::XML::Node#first_element_child fetch the first child node that is
499
+ an ELEMENT node.
500
+ * Nokogiri::XML::Node#last_element_child fetch the last child node that is
501
+ an ELEMENT node.
502
+ * Nokogiri::XML::Node#elements fetch all children nodes that are ELEMENT
503
+ nodes.
504
+ * Nokogiri::XML::Node#add_child, #add_previous_sibling, #before,
505
+ #add_next_sibling, #after, #inner_html, #swap and #replace all now
506
+ accept a Node, DocumentFragment, NodeSet, or a string containing
507
+ markup.
508
+ * Node#fragment? indicates whether a node is a DocumentFragment.
509
+
510
+ * Bugfixes
511
+
512
+ * XML::NodeSet is now always decorated (if the document has decorators).
513
+ GH #198
514
+ * XML::NodeSet#slice gracefully handles offset+length larger than the set
515
+ length. GH #200
516
+ * XML::Node#content= safely unlinks previous content. GH #203
517
+ * XML::Node#namespace= takes nil as a parameter
518
+ * XML::Node#xpath returns things other than NodeSet objects. GH #208
519
+ * XSLT::StyleSheet#transform accepts hashes for parameters. GH #223
520
+ * Psuedo selectors inside not() work. GH #205
521
+ * XML::Builder doesn't break when nodes are unlinked.
522
+ Thanks to vihai! GH #228
523
+ * Encoding can be forced on the SAX parser. Thanks Eugene Pimenov! GH #204
524
+ * XML::DocumentFragment uses XML::Node#parse to determine children.
525
+ * Fixed a memory leak in xml reader. Thanks sdor! GH #244
526
+ * Node#replace returns the new child node as claimed in the
527
+ RDoc. Previously returned +self+.
528
+
529
+ * Notes
530
+
531
+ * The Windows gems now bundle DLLs for libxml 2.7.6 and libxslt
532
+ 1.1.26. Prior to this release, libxml 2.7.3 and libxslt 1.1.24
533
+ were bundled.
534
+
535
+
536
+ === 1.4.1 / 2009/12/10
537
+
538
+ * New Features
539
+
540
+ * Added Nokogiri::LIBXML_ICONV_ENABLED
541
+ * Alias Node#[] to Node#attr
542
+ * XML::Node#next_element added
543
+ * XML::Node#> added for searching a nodes immediate children
544
+ * XML::NodeSet#reverse added
545
+ * Added fragment support to Node#add_child, Node#add_next_sibling,
546
+ Node#add_previous_sibling, and Node#replace.
547
+ * XML::Node#previous_element implemented
548
+ * Rubinius support
549
+ * Ths CSS selector engine now supports :has()
550
+ * XML::NodeSet#filter() was added
551
+ * XML::Node.next= and .previous= are aliases for add_next_sibling and add_previous_sibling. GH #183
552
+
553
+ * Bugfixes
554
+
555
+ * XML fragments with namespaces do not raise an exception (regression in 1.4.0)
556
+ * Node#matches? works in nodes contained by a DocumentFragment. GH #158
557
+ * Document should not define add_namespace() method. GH #169
558
+ * XPath queries returning namespace declarations do not segfault.
559
+ * Node#replace works with nodes from different documents. GH #162
560
+ * Adding XML::Document#collect_namespaces
561
+ * Fixed bugs in the SOAP4R adapter
562
+ * Fixed bug in XML::Node#next_element for certain edge cases
563
+ * Fixed load path issue with JRuby under Windows. GH #160.
564
+ * XSLT#apply_to will honor the "output method". Thanks richardlehane!
565
+ * Fragments containing leading text nodes with newlines now parse properly. GH #178.
566
+
567
+
568
+ === 1.4.0 / 2009/10/30
569
+
570
+ * Happy Birthday!
571
+
572
+ * New Features
573
+
574
+ * Node#at_xpath returns the first element of the NodeSet matching the XPath
575
+ expression.
576
+ * Node#at_css returns the first element of the NodeSet matching the CSS
577
+ selector.
578
+ * NodeSet#| for unions GH #119 (Thanks Serabe!)
579
+ * NodeSet#inspect makes prettier output
580
+ * Node#inspect implemented for more rubyish document inspecting
581
+ * Added XML::DTD#external_id
582
+ * Added XML::DTD#system_id
583
+ * Added XML::ElementContent for DTD Element content validity
584
+ * Better namespace declaration support in Nokogiri::XML::Builder
585
+ * Added XML::Node#external_subset
586
+ * Added XML::Node#create_external_subset
587
+ * Added XML::Node#create_internal_subset
588
+ * XML Builder can append raw strings (GH #141, patch from dudleyf)
589
+ * XML::SAX::ParserContext added
590
+ * XML::Document#remove_namespaces! for the namespace-impaired
591
+
592
+ * Bugfixes
593
+
594
+ * returns nil when HTML documents do not declare a meta encoding tag. GH #115
595
+ * Uses RbConfig::CONFIG['host_os'] to adjust ENV['PATH'] GH #113
596
+ * NodeSet#search is more efficient GH #119 (Thanks Serabe!)
597
+ * NodeSet#xpath handles custom xpath functions
598
+ * Fixing a SEGV when XML::Reader gets attributes for current node
599
+ * Node#inner_html takes the same arguments as Node#to_html GH #117
600
+ * DocumentFragment#css delegates to it's child nodes GH #123
601
+ * NodeSet#[] works with slices larger than NodeSet#length GH #131
602
+ * Reparented nodes maintain their namespace. GH #134
603
+ * Fixed SEGV when adding an XML::Document to NodeSet
604
+ * XML::SyntaxError can be duplicated. GH #148
605
+
606
+ * Deprecations
607
+
608
+ * Hpricot compatibility layer removed
609
+
610
+
611
+ === 1.3.3 / 2009/07/26
612
+
613
+ * New Features
614
+
615
+ * NodeSet#children returns all children of all nodes
616
+
617
+ * Bugfixes
618
+
619
+ * Override libxml-ruby's global error handler
620
+ * ParseOption#strict fixed
621
+ * Fixed a segfault when sending an empty string to Node#inner_html= GH #88
622
+ * String encoding is now set to UTF-8 in Ruby 1.9
623
+ * Fixed a segfault when moving root nodes between documents. GH #91
624
+ * Fixed an O(n) penalty on node creation. GH #101
625
+ * Allowing XML documents to be output as HTML documents
626
+
627
+ * Deprecations
628
+
629
+ * Hpricot compatibility layer will be removed in 1.4.0
630
+
631
+
632
+ === 1.3.2 / 2009-06-22
633
+
634
+ * New Features
635
+
636
+ * Nokogiri::XML::DTD#validate will validate your document
637
+
638
+ * Bugfixes
639
+
640
+ * Nokogiri::XML::NodeSet#search will search top level nodes. GH #73
641
+ * Removed namespace related methods from Nokogiri::XML::Document
642
+ * Fixed a segfault when a namespace was added twice
643
+ * Made nokogiri work with Snow Leopard GH #79
644
+ * Mailing list has moved to: http://groups.google.com/group/nokogiri-talk
645
+ * HTML fragments now correctly handle comments and CDATA blocks. GH #78
646
+ * Nokogiri::XML::Document#clone is now an alias of dup
647
+
648
+ * Deprecations
649
+
650
+ * Nokogiri::XML::SAX::Document#start_element_ns is deprecated, please switch
651
+ to Nokogiri::XML::SAX::Document#start_element_namespace
652
+ * Nokogiri::XML::SAX::Document#end_element_ns is deprecated, please switch
653
+ to Nokogiri::XML::SAX::Document#end_element_namespace
654
+
655
+
656
+ === 1.3.1 / 2009-06-07
657
+
658
+ * Bugfixes
659
+
660
+ * extconf.rb checks for optional RelaxNG and Schema functions
661
+ * Namespace nodes are added to the Document node cache
662
+
663
+
664
+ === 1.3.0 / 2009-05-30
665
+
666
+ * New Features
667
+
668
+ * Builder changes scope based on block arity
669
+ * Builder supports methods ending in underscore similar to tagz
670
+ * Nokogiri::XML::Node#<=> compares nodes based on Document position
671
+ * Nokogiri::XML::Node#matches? returns true if Node can be found with
672
+ given selector.
673
+ * Nokogiri::XML::Node#ancestors now returns an Nokogiri::XML::NodeSet
674
+ * Nokogiri::XML::Node#ancestors will match parents against optional selector
675
+ * Nokogiri::HTML::Document#meta_encoding for getting the meta encoding
676
+ * Nokogiri::HTML::Document#meta_encoding= for setting the meta encoding
677
+ * Nokogiri::XML::Document#encoding= to set the document encoding
678
+ * Nokogiri::XML::Schema for validating documents against XSD schema
679
+ * Nokogiri::XML::RelaxNG for validating documents against RelaxNG schema
680
+ * Nokogiri::HTML::ElementDescription for fetching HTML element descriptions
681
+ * Nokogiri::XML::Node#description to fetch the node description
682
+ * Nokogiri::XML::Node#accept implements Visitor pattern
683
+ * bin/nokogiri for easily examining documents (Thanks Yutaka HARA!)
684
+ * Nokogiri::XML::NodeSet now supports more Array and Enumerable operators:
685
+ index, delete, slice, - (difference), + (concatenation), & (intersection),
686
+ push, pop, shift, ==
687
+ * Nokogiri.XML, Nokogiri.HTML take blocks that receive
688
+ Nokogiri::XML::ParseOptions objects
689
+ * Nokogiri::XML::Node#namespace returns a Nokogiri::XML::Namespace
690
+ * Nokogiri::XML::Node#namespace= for setting a node's namespace
691
+ * Nokogiri::XML::DocumentFragment and Nokogiri::HTML::DocumentFragment
692
+ have a sensible API and a more robust implementation.
693
+ * JRuby 1.3.0 support via FFI.
694
+
695
+ * Bugfixes
696
+
697
+ * Fixed a problem with nil passed to CDATA constructor
698
+ * Fragment method deals with regular expression characters
699
+ (Thanks Joel!) LH #73
700
+ * Fixing builder scope issues LH #61, LH #74, LH #70
701
+ * Fixed a problem when adding a child could remove the child namespace LH#78
702
+ * Fixed bug with unlinking a node then reparenting it. (GH#22)
703
+ * Fixed failure to catch errors during XSLT parsing (GH#32)
704
+ * Fixed a bug with attribute conditions in CSS selectors (GH#36)
705
+ * Fixed intolerance of HTML attributes without values in Node#before/after/inner_html=. (GH#35)
706
+
707
+
708
+ === 1.2.3 / 2009-03-22
709
+
710
+ * Bugfixes
711
+
712
+ * Fixing bug where a node is passed in to Node#new
713
+ * Namespace should be assigned on DocumentFragment creation. LH #66
714
+ * Nokogiri::XML::NodeSet#dup works GH #10
715
+ * Nokogiri::HTML returns an empty Document when given a blank string GH#11
716
+ * Adding a child will remove duplicate namespace declarations LH #67
717
+ * Builder methods take a hash as a second argument
718
+
719
+
720
+ === 1.2.2 / 2009-03-14
721
+
722
+ * New features
723
+
724
+ * Nokogiri may be used with soap4r. See XSD::XMLParser::Nokogiri
725
+ * Nokogiri::XML::Node#inner_html= to set the inner html for a node
726
+ * Nokogiri builder interface improvements
727
+ * Nokogiri::XML::Node#swap swaps html for current node (LH #50)
728
+
729
+ * Bugfixes
730
+
731
+ * Fixed a tag nesting problem in the Builder API (LH #41)
732
+ * Nokogiri::HTML.fragment will properly handle text only nodes (LH #43)
733
+ * Nokogiri::XML::Node#before will prepend text nodes (LH #44)
734
+ * Nokogiri::XML::Node#after will append text nodes
735
+ * Nokogiri::XML::Node#search automatically registers root namespaces (LH #42)
736
+ * Nokogiri::XML::NodeSet#search automatically registers namespaces
737
+ * Nokogiri::HTML::NamedCharacters delegates to libxml2
738
+ * Nokogiri::XML::Node#[] can take a symbol (LH #48)
739
+ * vasprintf for windows updated. Thanks Geoffroy Couprie!
740
+ * Nokogiri::XML::Node#[]= should not encode entities (LH #55)
741
+ * Namespaces should be copied to reparented nodes (LH #56)
742
+ * Nokogiri uses encoding set on the string for default in Ruby 1.9
743
+ * Document#dup should create a new document of the same type (LH #59)
744
+ * Document should not have a parent method (LH #64)
745
+
746
+
747
+ === 1.2.1 / 2009-02-23
748
+
749
+ * Bugfixes
750
+
751
+ * Fixed a CSS selector space bug
752
+ * Fixed Ruby 1.9 String Encoding (Thanks 角谷さん!)
753
+
754
+
755
+ === 1.2.0 / 2009-02-22
756
+
757
+ * New features
758
+
759
+ * CSS search now supports CSS3 namespace queries
760
+ * Namespaces on the root node are automatically registered
761
+ * CSS queries use the default namespace
762
+ * Nokogiri::XML::Document#encoding get encoding used for this document
763
+ * Nokogiri::XML::Document#url get the document url
764
+ * Nokogiri::XML::Node#add_namespace add a namespace to the node LH#38
765
+ * Nokogiri::XML::Node#each iterate over attribute name, value pairs
766
+ * Nokogiri::XML::Node#keys get all attribute names
767
+ * Nokogiri::XML::Node#line get the line number for a node (Thanks Dirkjan Bussink!)
768
+ * Nokogiri::XML::Node#serialize now takes an optional encoding parameter
769
+ * Nokogiri::XML::Node#to_html, to_xml, and to_xhtml take an optional encoding
770
+ * Nokogiri::XML::Node#to_str
771
+ * Nokogiri::XML::Node#to_xhtml to produce XHTML documents
772
+ * Nokogiri::XML::Node#values get all attribute values
773
+ * Nokogiri::XML::Node#write_to writes the node to an IO object with optional encoding
774
+ * Nokogiri::XML::ProcessingInstrunction.new
775
+ * Nokogiri::XML::SAX::PushParser for all your push parsing needs.
776
+
777
+ * Bugfixes
778
+
779
+ * Fixed Nokogiri::XML::Document#dup
780
+ * Fixed header detection. Thanks rubikitch!
781
+ * Fixed a problem where invalid CSS would cause the parser to hang
782
+
783
+ * Deprecations
784
+
785
+ * Nokogiri::XML::Node.new_from_str will be deprecated in 1.3.0
786
+
787
+ * API Changes
788
+
789
+ * Nokogiri::HTML.fragment now returns an XML::DocumentFragment (LH #32)
790
+
791
+
792
+ === 1.1.1
793
+
794
+ * New features
795
+
796
+ * Added XML::Node#elem?
797
+ * Added XML::Node#attribute_nodes
798
+ * Added XML::Attr
799
+ * XML::Node#delete added.
800
+ * XML::NodeSet#inner_html added.
801
+
802
+ * Bugfixes
803
+
804
+ * Not including an HTML entity for \r for HTML nodes.
805
+ * Removed CSS::SelectorHandler and XML::XPathHandler
806
+ * XML::Node#attributes returns an Attr node for the value.
807
+ * XML::NodeSet implements to_xml
808
+
809
+
810
+ === 1.1.0
811
+
812
+ * New Features
813
+
814
+ * Custom XPath functions are now supported. See Nokogiri::XML::Node#xpath
815
+ * Custom CSS pseudo classes are now supported. See Nokogiri::XML::Node#css
816
+ * Nokogiri::XML::Node#<< will add a child to the current node
817
+
818
+ * Bugfixes
819
+
820
+ * Mutex lock on CSS cache access
821
+ * Fixed build problems with GCC 3.3.5
822
+ * XML::Node#to_xml now takes an indentation argument
823
+ * XML::Node#dup takes an optional depth argument
824
+ * XML::Node#add_previous_sibling returns new sibling node.
825
+
826
+
827
+ === 1.0.7
828
+
829
+ * Bugfixes
830
+
831
+ * Fixed memory leak when using Dike
832
+ * SAX parser now parses IO streams
833
+ * Comment nodes have their own class
834
+ * Nokogiri() should delegate to Nokogiri.parse()
835
+ * Prepending rather than appending to ENV['PATH'] on windows
836
+ * Fixed a bug in complex CSS negation selectors
837
+
838
+
839
+ === 1.0.6
840
+
841
+ * 5 Bugfixes
842
+
843
+ * XPath Parser raises a SyntaxError on parse failure
844
+ * CSS Parser raises a SyntaxError on parse failure
845
+ * filter() and not() hpricot compatibility added
846
+ * CSS searches via Node#search are now always relative
847
+ * CSS to XPath conversion is now cached
848
+
849
+
850
+ === 1.0.5
851
+
852
+ * Bugfixes
853
+
854
+ * Added mailing list and ticket tracking information to the README.txt
855
+ * Sets ENV['PATH'] on windows if it doesn't exist
856
+ * Caching results of NodeSet#[] on Document
857
+
858
+
859
+ === 1.0.4
860
+
861
+ * Bugfixes
862
+
863
+ * Changed memory management from weak refs to document refs
864
+ * Plugged some memory leaks
865
+ * Builder blocks can call methods from surrounding contexts
866
+
867
+
868
+ === 1.0.3
869
+
870
+ * 5 Bugfixes
871
+
872
+ * NodeSet now implements to_ary
873
+ * XML::Document should not implement parent
874
+ * More GC Bugs fixed. (Mike is AWESOME!)
875
+ * Removed RARRAY_LEN for 1.8.5 compatibility. Thanks Shane Hanna.
876
+ * inner_html fixed. (Thanks Yehuda!)
877
+
878
+
879
+ === 1.0.2
880
+
881
+ * 1 Bugfix
882
+
883
+ * extconf.rb should not check for frex and racc
884
+
885
+
886
+ === 1.0.1
887
+
888
+ * 1 Bugfix
889
+
890
+ * Made sure extconf.rb searched libdir and prefix so that ports libxml/ruby
891
+ will link properly. Thanks lucsky!
892
+
893
+
894
+ === 1.0.0 / 2008-07-13
895
+
896
+ * 1 major enhancement
897
+
898
+ * Birthday!