Skip to content

Instantly share code, notes, and snippets.

@jonathan
Created January 20, 2010 21:25
Show Gist options
  • Save jonathan/282290 to your computer and use it in GitHub Desktop.
Save jonathan/282290 to your computer and use it in GitHub Desktop.
class Float
def divisible_by_2?
return self.value % 2 == 0
end
def divisible_by_3?
return self.value % 3 == 0
end
def divisible_by_6?
return self. divisible_by_2 && divisible_by_3
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment