1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* NEWS: Add an item about REXML::Document#write.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2012-11-03 05:11:00 +00:00
parent 82aef2ae50
commit 15a743b3ff
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sat Nov 3 14:09:55 2012 Kouhei Sutou <kou@cozmixng.org>
* NEWS: Add an item about REXML::Document#write.
Sat Nov 3 13:46:49 2012 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_document.rb: Fix tests that expect encoding name

6
NEWS
View file

@ -226,6 +226,12 @@ with all sufficient information, see the ChangeLog file.
* new method:
* ObjectSpace.reachable_objects_from(obj)
* rexml
* REXML::Document#write supports Hash arguments.
* REXML::Document#write supports new :encoding option. It changes
XML document encoding. Without :encoding option, encoding in
XML declaration is used for XML document encoding.
=== Language changes
* Added %i and %I for symbol list creation (similar to %w and %W).