Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a "Word" class and I am getting a error TypeError: superclass mismatch for class Word

Here is the irb code

irb(main):016:0> class Word
irb(main):017:1>  def palindrome?(string)
irb(main):018:2>   string == string.reverse
irb(main):019:2>  end
irb(main):020:1> end
=> nil
irb(main):021:0> w = Word.new
=> #<Word:0x4a8d970>
irb(main):022:0> w.palindrome?("foobar")
=> false
irb(main):023:0> w.palindrome?("level")
=> true
irb(main):024:0> class Word < String
irb(main):025:1>  def palindrome?
irb(main):026:2>    self == self.reverse
irb(main):027:2>  end
irb(main):028:1> end
TypeError: superclass mismatch for class Word
 from (irb):24
 from C:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.1/lib/rails/commands/console.rb:47:in `start'
 from C:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.1/lib/rails/commands/console.rb:8:in `start'
 from C:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.1/lib/rails/commands.rb:41:in `<top (required)>'
 from script/rails:6:in `require'
 from script/rails:6:in `<main>'
share|improve this question
1  
Looks like second class Word is conflicting with the first one. Not sure how to clear that without closing IRB and reopening though. – ScottJShea Mar 21 '12 at 23:25
And as an FYI I tend to do classes, loops and more complex blocks in a script and run the script than use the IRB. – ScottJShea Mar 21 '12 at 23:30

2 Answers

up vote 11 down vote accepted

thumb rule in irb (either way irb or rails console)

if you are creating same class twice with inheritance (superclass) exit irb instance and create again. Why this? because class conflicting happens.

In your case, you are using window (Found from the question), so just type exit on dos prompt and again type irb or rails console and create Word class, it should works. Please let me know if doesn't works for you

share|improve this answer

The reason it gives you a superclass mismatch error is because you have already defined the Word class as inheriting from Object

def class Word
...
end

In Ruby (like in most dynamic languages) you can monkey-patch classes by reopening the definition and modifying the class. However, in your instance, when you are reopening the class you are also attempting to redefine the class as inheriting from the super class String.

def class Word < String
...
end

Once a class and it's inheritance structure have been defined, you cannot define it again.

As a few people have said, exiting and restarting irb will allow you to start from scratch in defining the Word class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.