Last Modified
2013-07-10 15:28:39 -0400
Requires

Description

Matches if/unless conditions inside classes and attempts to process only one branch (by evaluating the condition if possible).

@example A simple class conditional

class Foo
  if 0
    # This method is ignored
    def xyz; end
  end
end