game_set_match 0.1.0 → 0.1.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 +1 -1
- data/lib/game_set_match.rb +2 -1
- data/lib/game_set_match/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd6a260ee6ec9cf3bda166cb04014a17786773b6
|
4
|
+
data.tar.gz: d3dd9eb3eebbd1f115922b2fb9d634fd860d8b1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 312011c8f30e45e061f27f34b4a6f8878ab61778d87cf5bb26dc5c0b11c653a4cc0e8cdaab436669a537fe5e73cb585d8a35523c860762e2a348cc7b198680d5
|
7
|
+
data.tar.gz: e104ef3f426289dfe9582d1d0edbf6af0780e6ff2fe8a3a5637a9b6d0570ee8de1648c461ace56ebec0abaccd1caa92a6b262f9baf90e87c4a71acf29e4fa850
|
data/README.md
CHANGED
@@ -22,7 +22,7 @@ Let's say you have two lists of songs: filenames and user inputs. You want to ma
|
|
22
22
|
```
|
23
23
|
filenames = ['01 - Lana Del Rey.mp4', '04 - The Heebee Jeeby Experience', '05 - Woodstock: What I learned']
|
24
24
|
user_inputs = ['the_ heebee jeeby experience', 'lana del ray', 'woodstok what I learned']
|
25
|
-
GameSetMatch.
|
25
|
+
GameSetMatch.match(filenames, user_inputs) =>
|
26
26
|
{"the_ heebee jeeby experience"=>"04 - The Heebee Jeeby Experience",
|
27
27
|
"lana del ray"=>"01 - Lana Del Rey.mp4",
|
28
28
|
"woodstok what I learned"=>"05 - Woodstock: What I learned"}
|
data/lib/game_set_match.rb
CHANGED