bfsearch 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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 129bb56223f1aa129ca1abefda4b85b23da47c47
4
- data.tar.gz: a65004653985341496fc91c1cd440657ebcb230f
3
+ metadata.gz: 0afa0f6a60f52f662235b464ed6ffddb2bca68d0
4
+ data.tar.gz: a80c81abd020182a209e74e2b6e244257b411618
5
5
  SHA512:
6
- metadata.gz: e0703db610278237f10eae69ff6b073bebc898127209c5e59939ce165f85568b18f2d40e63f21c1e7f97581da731ea04caa3e5d410397124e7f67445abd50b92
7
- data.tar.gz: b8dda051b7b5834263486fdc87d6b834bd393b5644361796687d0fc5450b43f5cb05a686cbdf20560392400eaeb1a1855bd3f5ae5769caf5bc05de1798753a2e
6
+ metadata.gz: e232365032eac70c8bb4fe91cf94257dfdb7215aee6db4120b28550c0cb2b1825ea513ef968400e4d6c2ad1a161a0a9383771332249cbc12d911b1bbfc137e43
7
+ data.tar.gz: b6b1b066c849dfcc5f9a311291be85dfbfbe579c1125c899d79eb74f76fbf8f783a0477950583766d1335a2bf6b9d473248db5d09175802fda42bdf01ebb8b5c
data/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # Best-First Search
2
+
3
+ ## Introduction
4
+
5
+ This Ruby gem implements the Best-First Search algorithm.
6
+
7
+ ## License
8
+
9
+ This code is licensed under the GNU GPL v3. See the file `COPYING` for
10
+ details.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bfsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric MSP Veith
@@ -16,6 +16,7 @@ executables: []
16
16
  extensions: []
17
17
  extra_rdoc_files: []
18
18
  files:
19
+ - README.md
19
20
  - lib/bfsearch.rb
20
21
  - test/test_bfsearch.rb
21
22
  homepage: https://github.com/eveith/bfsearch