hsztan_palindrome 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +18 -4
- data/lib/hsztan_palindrome/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9402d88fd66008c86d20cbbeef6e17f9eada92e39ca44940bc00cde73dc53a7e
|
|
4
|
+
data.tar.gz: 16e15b34580692844ee9918e2447ec906c803b8da3c7938a44a91ffd3b9bb434
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d05facb3bc6206a8f9f2c5d0ec52d940ebff01f4c2ad9f722db39c6368bf1f7792e5af1e39482fa50b28efe2c6cc653542a185bfa7cf8f8b3c5efd4d91743aa
|
|
7
|
+
data.tar.gz: 5554ac94f11f1a017a41caef556437095ebf7016ebdeb59752f3ddd85d0b7d6348be463e02ba9df729ba45fbce9d741c8cac7a29ce82c37e38ddc30607d4eafc
|
data/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# HsztanPalindrome
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
4
|
|
|
5
|
-
This gem is a palindrome detector for strings. It can be used as a library or as a command line tool.
|
|
5
|
+
This gem is a palindrome detector for strings and integers. It can be used as a library or as a command line tool.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -22,9 +22,23 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
Use as a library:
|
|
26
26
|
|
|
27
|
-
```
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
require 'hsztan_palindrome'
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
"foo".palindrome? # => false
|
|
34
|
+
|
|
35
|
+
"racecar".palindrome? # => true
|
|
36
|
+
|
|
37
|
+
12345.palindrome? # => false
|
|
38
|
+
|
|
39
|
+
12321.palindrome? # => true
|
|
40
|
+
|
|
41
|
+
```
|
|
28
42
|
|
|
29
43
|
## Development
|
|
30
44
|
|