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

syntax error, unexpected $end, expecting keyword_end

We’ve all been there! Assuming enough code changed that a quick glance at git diff or the like doesn’t make it obvious, is there an easy way to find that missing end (short of switching to an indentation-based language like Python)?

FWIW, I use Sublime Text 2 as my editor.

share|improve this question
1  
vim syntax highlighting, and the ability to quickly reformat the indentation of the code has taken away all that pain for me :-) Sublime Text is likely to have something similar, right? – Prakash Murthy Oct 12 '12 at 1:20

1 Answer

up vote 12 down vote accepted

If you're using Ruby 1.9, try the -w flag when running your ruby program.

# t.rb
class Example
  def meth1
    if Time.now.hours > 12
      puts "Afternoon"
  end
  def meth2
    # ...
  end
end

ruby t.rb  
=> t.rb:10: syntax error, unexpected $end, expecting keyword_end

ruby -w t.rb
=> t.rb:5: warning: mismatched indentations at 'end' with 'if' at 3
   t.rb:9: warning: mismatched indentations at 'end' with 'def' at 2
   t.rb:10: syntax error, unexpected $end, expecting keyword_end

Source:

http://pragdave.blogs.pragprog.com/pragdave/2008/12/ruby-19-can-check-your-indentation.html

share|improve this answer
1  
Does this only only work if you use consistent indentation? (+1) – Andrew Marshall Oct 12 '12 at 1:19
I removed all the whitespace and it didn't give me any mismatched identation errors so looks like the answer is yes. – Sunny Juneja Oct 12 '12 at 1:27

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.