word_searcher 1.02 → 1.03

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c63215a765c3030d4d38c9411524c4b7be44f35de82106ba4b93f6c693bfa69
4
- data.tar.gz: 334e725678b086810571fca347ef43e8845a3a9d7f6795afcad4c510c403ac8d
3
+ metadata.gz: 4d208411b1b5682954114fa23b1942b70daaf00e6c6474c26bf0670168f89f92
4
+ data.tar.gz: edb28924f523b9738e4545f1efdfd7ad01d3f25afc4447422ea9aa1338de2686
5
5
  SHA512:
6
- metadata.gz: 731db95982679d584d6fba5b6bf65de040d55a37babf408a7fb7ec1a732c870f6b0172692d57f4be2daf406c8f6bb1ff5c69a88732c646d894ebd7099067793a
7
- data.tar.gz: 96e26d23ca1778aba3e18412ecf2c5f66be7fe5b3c180e33d49ca6a643e4b1aa4b9f3f2d7c734d3529814ef446c23d147f174f876b237384b431083b6b592b56
6
+ metadata.gz: e544f6bb52da22f54f9ca7d40512701d54347be7e4232ff22f2fdb6c585a8dee8c05c56104464507a832d43bda45eb33b0e1f5b23c9ab39b4d312c78e61ddaa3
7
+ data.tar.gz: 15efceb774fc23f961c0788e59c2653a5981bc3f346502d6239b4b68a981bbe978c104561e95be3f51bb78ff6caaa313d5a7c4a233910cc354c6cab90b77a1f1
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](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, if 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.
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
 
@@ -1,3 +1,3 @@
1
1
  module WordSearcher
2
- VERSION = "1.02"
2
+ VERSION = "1.03"
3
3
  end
@@ -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, if 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.}
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.02'
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, if looks to see if the next letter of the word is joining the
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.