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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0787afc02a5e5aeed9e28d9718a056c7283407782d962f8080d7555432f7bc1f'
4
- data.tar.gz: 061a73fb1ed5f76ef1a65693fb9dd7693f93dd6b7b5a77148c81b5cb3aef68df
3
+ metadata.gz: 4bcabadcd376bb92ad3475c53932267a0c60ec754c3eaee3752419599b43a43d
4
+ data.tar.gz: 14e9a07573004da6fdae2940502c954fce97edacdbd911f48fb860b2a081f9d5
5
5
  SHA512:
6
- metadata.gz: a3837507718959da78d6205e8eb19861c8697952b4174aace15d6a95d6e05b994c038714fed2947bd728c310c8338236189b69e185d201e99889e0eddf1cdd29
7
- data.tar.gz: 9ff9764efaef2e8b1267955ecae94c570caecbe791f1525987e03d5bb17c8ad749207f578b006cce4b5002badf87638808218e4651c0ee5959afa49d27cc23e9
6
+ metadata.gz: ee92e6b219eb03aef09b839a2244cd157a8ea5f558ac1893c0c9ea82512ed6c50f834548a14025865977c39c88deeaafc5b04e3b0cbb370878a0d0c4590c292f
7
+ data.tar.gz: df6254b4267c4ea0db5896e61cd21b22c40e5c5097ab35399639f01954f2090aba751319193a60418fa4c6ca358b0bd8b02ac93ea9d9258704887e3b66a06ea6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hanoi_tower (0.1.0)
4
+ hanoi_tower (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -6,12 +6,15 @@ Solve towers of hanoi.
6
6
 
7
7
  ## Installation
8
8
 
9
- clone this repo and `bundle install`
9
+ ```
10
+ gem install hanoi_tower
11
+ ```
10
12
 
11
13
  ## Usage
12
14
 
13
15
  ```
14
- bundle exec ruby ./exe/hanoi_tower <ring count> <sleep time>
16
+ $ hanoi_tower
17
+ $ hanoi_tower <ring_count> <sleep_time>
15
18
  ```
16
19
 
17
20
  ## License
File without changes
@@ -1,3 +1,3 @@
1
1
  module HanoiTower
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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
- - towers_of_hanoi
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/towers_of_hanoi
74
+ - exe/hanoi_tower
75
75
  - hanoi_tower.gemspec
76
76
  - lib/hanoi_tower.rb
77
77
  - lib/hanoi_tower/game.rb