README.rdoc in divisible-0.0.2 vs README.rdoc in divisible-0.1.0
- old
+ new
@@ -1,15 +1,25 @@
= 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
- 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
+ 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