| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| oga-0.2.2-java.gem.sha512 | 2015-03-03 | 128 Bytes | |
| oga-0.2.2.gem.sha512 | 2015-03-03 | 128 Bytes | |
| README.md | 2015-03-03 | 391 Bytes | |
| Release 0.2.2.tar.gz | 2015-03-03 | 3.5 MB | |
| Release 0.2.2.zip | 2015-03-03 | 3.6 MB | |
| Totals: 5 Items | 7.1 MB | 0 | |
This release fixes a bug where setting the text of an element using
Oga::XML::Element#inner_text= would not set the parent element of the newly
created text node. This would result in the following:
some_element.inner_text = 'foo'
some_element.children[0].parent # => nil
Here parent is supposed to return some_element instead. See commit
[142b46] for more information.