From: Han Holl Date: 2004-12-21T00:25:39+09:00 Subject: Constructor question Hi, I can't figure out why the following: require 'curl' a = Curl.new # constructor without arguments works ! class Geoserver < Curl def initialize(plek) super() end end curl = Geoserver.new('plek') # end-of-program produces: /tmp/curltest.rb:13:in `new': wrong number of arguments (1 for 0) (ArgumentError) from /tmp/curltest.rb:13 'curl' is the libcurl wrapper from RAA. Cheers, Han Holl