Skip to content

Instantly share code, notes, and snippets.

@mattdenner
Created October 13, 2011 15:44
Show Gist options
  • Select an option

  • Save mattdenner/1284574 to your computer and use it in GitHub Desktop.

Select an option

Save mattdenner/1284574 to your computer and use it in GitHub Desktop.
def needed?(a, b)
return false if a.nil?
unless b.nil?
unless b.t2?
if a.t1?
return true
end
end
else
if a.t1?
return true
end
end
false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment