Data.new dosnt work

Hi,

How do I create an instance of the Data class. I am using ruby
1.8.0-preview3

I get the following error:

irb(main):009:0> Data.new
NoMethodError: allocator undefined for Data
from (irb):9:in new' from (irb):9 irb(main):010:0> Data.new() NoMethodError: allocator undefined for Data from (irb):10:innew’
from (irb):10
irb(main):011:0> Object.new
=> #Object:0x401aa3b8

Hi,

···

At Fri, 25 Jul 2003 16:16:17 +0900, maillist@bestworldweb.homelinux.com wrote:

How do I create an instance of the Data class. I am using ruby
1.8.0-preview3

Data is the abstract class for extension libraries. You can
never instantiate it.


Nobu Nakada