hanoi_tower 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/Gemfile.lock +1 -1
- data/README.md +5 -2
- data/exe/{towers_of_hanoi → hanoi_tower} +0 -0
- data/lib/hanoi_tower/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bcabadcd376bb92ad3475c53932267a0c60ec754c3eaee3752419599b43a43d
|
4
|
+
data.tar.gz: 14e9a07573004da6fdae2940502c954fce97edacdbd911f48fb860b2a081f9d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee92e6b219eb03aef09b839a2244cd157a8ea5f558ac1893c0c9ea82512ed6c50f834548a14025865977c39c88deeaafc5b04e3b0cbb370878a0d0c4590c292f
|
7
|
+
data.tar.gz: df6254b4267c4ea0db5896e61cd21b22c40e5c5097ab35399639f01954f2090aba751319193a60418fa4c6ca358b0bd8b02ac93ea9d9258704887e3b66a06ea6
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -6,12 +6,15 @@ Solve towers of hanoi.
|
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
|
9
|
+
```
|
10
|
+
gem install hanoi_tower
|
11
|
+
```
|
10
12
|
|
11
13
|
## Usage
|
12
14
|
|
13
15
|
```
|
14
|
-
|
16
|
+
$ hanoi_tower
|
17
|
+
$ hanoi_tower <ring_count> <sleep_time>
|
15
18
|
```
|
16
19
|
|
17
20
|
## License
|
File without changes
|
data/lib/hanoi_tower/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hanoi_tower
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- oieioi
|
@@ -56,7 +56,7 @@ description: Solve Tower of hanoi on CLI
|
|
56
56
|
email:
|
57
57
|
- atsuinatsu.samuifuyu@gmail.com
|
58
58
|
executables:
|
59
|
-
-
|
59
|
+
- hanoi_tower
|
60
60
|
extensions: []
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
@@ -71,7 +71,7 @@ files:
|
|
71
71
|
- bin/console
|
72
72
|
- bin/setup
|
73
73
|
- demo.gif
|
74
|
-
- exe/
|
74
|
+
- exe/hanoi_tower
|
75
75
|
- hanoi_tower.gemspec
|
76
76
|
- lib/hanoi_tower.rb
|
77
77
|
- lib/hanoi_tower/game.rb
|