Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Created July 16, 2014 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJFaraday/8003815a243575eb06ac to your computer and use it in GitHub Desktop.
Save AJFaraday/8003815a243575eb06ac to your computer and use it in GitHub Desktop.
Possible ruby bug (1.9.3) else without an if is ignored...
def test_method
@var = 'a'
else
@var = 'b'
end
test_method
@var #=> 'b'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment