maze_crosser 0.1.0 → 0.2.0
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/maze_crosser/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: '091fb5cab7d2b15c62ee089220706e0da44dcd12'
|
4
|
+
data.tar.gz: 9fdc197e07aa6c36e55c57a6a867ee9d513fa5bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2373dd8ab59c3a007b1976f5d9d5d9f2c24a16a9e4f09103a0d1e1a175e547881f78956be13748d9890ea1d88ae59c9cd95fc43a687ca852078c753a1878b647
|
7
|
+
data.tar.gz: 797b92354f9ddfe4859c723785ed03e78f3474c257506f1fb381e23189bd3892b58a4a20c6d2e8f493455d27b7d815ff3d14d122acbeec2383115e5d3e8b7479
|
data/README.md
CHANGED
@@ -31,7 +31,7 @@ require 'maze_crosser'
|
|
31
31
|
You are now provided with two instance variables, @maze_crosser_runner and @cache_provider. You can use these as follows:
|
32
32
|
```ruby
|
33
33
|
# Empty the cache
|
34
|
-
@cache_provider.
|
34
|
+
@cache_provider.empty_cache!
|
35
35
|
|
36
36
|
# Provide a path to a grid file and a solving algorithm. Currently, the only
|
37
37
|
# algorithm option is 'recursive' (set as default).
|
data/lib/maze_crosser/version.rb
CHANGED