Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get the following error in ruby if I change == to > in a comparison:

nano:jc] ruby ItemController.rb

file read: snippets.txt

ItemController.rb:23:in `read': undefined method `>' for nil:NilClass (NoMethodError)
    from ItemController.rb:19:in `open'
    from ItemController.rb:19:in `read'
    from ItemController.rb:58

Below is the method definition that is causing the complaint. See the line

if line.index("<item>") > -1

With

if line.index("<item>") == 0

it works. Fails with > 0 also .

Yuuk!

  def read
    @item_count = 0
    File.open(@file_name, 'r') do |f1|
      while line=f1.gets
        @line.concat([line])

        if line.index("<item>") > -1
          puts "begin"
          @item_count = @item_count + 1
        end

        if line.index("</item>") == 0 
          puts "end\n"

        end

        # puts line
      end # while
   end # do
  end # def
share|improve this question

1 Answer

Your line.index("<item>") evaluates to nil. Nil has a == method but there is no >. So the root cause is that there is a nil where you didn't expect it.

share|improve this answer
Thankyou! I understand now. – epsilon2.7 Feb 19 '12 at 16:12
@epsilon2.7: How Does Accepting An Answer Work? – mu is too short Feb 19 '12 at 17:12
Simply click the check mark: meta.stackoverflow.com/questions/5234/… – iltempo Feb 19 '12 at 17:51

Your Answer

 
discard

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

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