vote up 1 vote down star

We have a class Car defined like this in a car.rb file

class Car
end

then, we have another class Car defined in electric/car.rb

require "../car.rb"
module Electric
  class Car < Car
  end
end

Unfortunately, it seems that we can't inherit from the first class. Why is that?

flag

80% accept rate
You cannot name the derived class Car. – Groo Jul 1 at 9:56

1 Answer

vote up 3 vote down check

Avoid any ambiguity by using the fully qualified name of Car:

module Electric
  class Car < ::Car
  end
end
link|flag
Good! That's what I was looking for ;) – Julien Genestoux Jul 1 at 12:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.