Sha256: 38c8a15e857acb0674cd449af3513436c36c3a02ae782033d90f4189166259f9

Contents?: true

Size: 840 Bytes

Versions: 2

Compression:

Stored size: 840 Bytes

Contents

= Divisible

Still using the C way of testing if one number is divisible by another? 

Still using this?

  x % 13 == 0 || x % 6  == 0 || x % 3 == 0

No need anymore! We present you *Divisible*. Check if number is divisible by another like a boss!

  x.divisible_by? 13, 6, 3

== Examples

  9.divisible_by? 3  # => true
  10.divisible_by? 3  # => false
  12.divisible_by? 3  # => true
  12.divisible_by? 4  # => true
  15.divisible_by? 4 # => false
  21.divisible_by? 3,7 # => true
  35.divisible_by? 3,5,0 # => false
  
Same can be done with

  Divisible.check(9, 3) # => true
  Divisible.check(10, 3) # => false
  Divisible.check(12, 3) # => true
  Divisible.check(12, 4) # => true
  Divisible.check(15, 4) # => false
  
== Install

  gem install divisible
  
== Licence

Copyright (c) 2011 Vlado Cingel, released under the MIT license

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
divisible-0.1.1 README.rdoc
divisible-0.1.0 README.rdoc