word_searcher 1.02 → 1.03
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/word_searcher/version.rb +1 -1
- data/word_searcher.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d208411b1b5682954114fa23b1942b70daaf00e6c6474c26bf0670168f89f92
|
|
4
|
+
data.tar.gz: edb28924f523b9738e4545f1efdfd7ad01d3f25afc4447422ea9aa1338de2686
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e544f6bb52da22f54f9ca7d40512701d54347be7e4232ff22f2fdb6c585a8dee8c05c56104464507a832d43bda45eb33b0e1f5b23c9ab39b4d312c78e61ddaa3
|
|
7
|
+
data.tar.gz: 15efceb774fc23f961c0788e59c2653a5981bc3f346502d6239b4b68a981bbe978c104561e95be3f51bb78ff6caaa313d5a7c4a233910cc354c6cab90b77a1f1
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
6
|
#### Creates and solves word search game.
|
|
7
|
-
WordSearcher generates a new word search puzzle with your input word, then tries to solve the puzzle. It is not programmed to win every game. It simply compares each letter of the word with all those available on the board, then randomly selects one. Then,
|
|
7
|
+
WordSearcher generates a new word search puzzle with your input word, then tries to solve the puzzle. It is not programmed to win every game. It simply compares each letter of the word with all those available on the board, then randomly selects one. Then, it looks to see if the next letter of the word is joining the prior, and so forth. It plays more like a human, rather than a computer, so make the game more fun. Each time you play, notice that the board changes each time, even for the same input word.
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
data/word_searcher.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["4rlm@protonmail.ch"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{WordSearcher generates a new word search puzzle with your input word, then tries to solve the puzzle}
|
|
13
|
-
spec.description = %q{WordSearcher generates a new word search puzzle with your input word, then tries to solve the puzzle. It is not programmed to win every game. It simply compares each letter of the word with all those available on the board, then randomly selects one. Then,
|
|
13
|
+
spec.description = %q{WordSearcher generates a new word search puzzle with your input word, then tries to solve the puzzle. It is not programmed to win every game. It simply compares each letter of the word with all those available on the board, then randomly selects one. Then, it looks to see if the next letter of the word is joining the prior, and so forth. It plays more like a human, rather than a computer, so make the game more fun. Each time you play, notice that the board changes each time, even for the same input word.}
|
|
14
14
|
|
|
15
15
|
spec.homepage = 'https://github.com/4rlm/word_searcher'
|
|
16
16
|
spec.license = "MIT"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: word_searcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.03'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Booth
|
|
@@ -151,7 +151,7 @@ dependencies:
|
|
|
151
151
|
description: WordSearcher generates a new word search puzzle with your input word,
|
|
152
152
|
then tries to solve the puzzle. It is not programmed to win every game. It simply
|
|
153
153
|
compares each letter of the word with all those available on the board, then randomly
|
|
154
|
-
selects one. Then,
|
|
154
|
+
selects one. Then, it looks to see if the next letter of the word is joining the
|
|
155
155
|
prior, and so forth. It plays more like a human, rather than a computer, so make
|
|
156
156
|
the game more fun. Each time you play, notice that the board changes each time,
|
|
157
157
|
even for the same input word.
|