You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Here is a test case I came up with to demonstrate the problem I'm having. libxml is a shared object, and when I try and inherit from the Document class, it won't let me override the initializer. Is this expected behavior or am I doing something wrong?
require 'xml/libxml'
class Test < XML::Document def initialize(params) print params super('1.0') end end