Skip to content

Commit

Permalink
added awesomness to readme :D
Browse files Browse the repository at this point in the history
  • Loading branch information
shime committed Feb 27, 2012
1 parent 3013387 commit c260815
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
= Divisible

Divisible is a Ruby gem useful in case you need to find out if one number is divisible by another
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

Expand Down

0 comments on commit c260815

Please sign in to comment.