Tagged Questions

3
votes
6answers
289 views
2
votes
4answers
55 views

ruby statement modifiers behavior

I've read a few things, including this and this, but I think the below example is different than what they're talking about. One person actually raises a similar example in the discussion but it's ...
1
vote
4answers
266 views

Proper usage of Ruby statement modifiers

I've just started working with Ruby, and discovered statement modifiers when RubyMine suggested I change this code: if !VALID_DIRECTIONS.include?(direction) raise ArgumentError, "Invalid ...