aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/integer/multiple.rb
blob: 40bea54c676b5bc06f735484df3e970d563d51cc (plain) (blame)
1
2
3
4
5
6
class Integer
  # Check whether the integer is evenly divisible by the argument.
  def multiple_of?(number)
    self % number == 0
  end
end