vg_tools 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
  SHA1:
3
- metadata.gz: f9b282b64b932f3a174a30fcf47838e721f69d6f
4
- data.tar.gz: 20ae43f5a778cd72b21a3e406088a36d69c4a0c3
3
+ metadata.gz: 8f79f20586b1485339daad331a6cf47126241907
4
+ data.tar.gz: c5d442a396ec3ebeb96e54abab5216bedf87edde
5
5
  SHA512:
6
- metadata.gz: 42439b618db0e05e503103c2163f19134501b797495c996c5471a8a145d063827cba511eacf842df4a7683a212d6de9ab6251be13165f152adb2d1404a0d3c30
7
- data.tar.gz: a84b738ae46b6ca269db74a27a15de081a01ca16c5df3bcc2a232717108b86e22c78e53d35a866c15919e82a8237fa1bc033d4eb427b01ed566fbb3da894ed23
6
+ metadata.gz: e47e908bc72851f84d37dbf5760e482feda6205e149f96c62437c0091cbdd6226a143cdcfc0b0981f150c6ef3154e57e6f616fc85e4bf31385b63630a66d3fde
7
+ data.tar.gz: 773eec81e9c3307ebe5a89398d64f003c49b8fe5a4e63bd37bdd76db6f33c5dd7381d69786b76288f57cb5e5f603c35df092253f92a8e63d992278462dc6fc51
@@ -1,3 +1,3 @@
1
1
  module VgTools
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/vg_tools.rb CHANGED
@@ -26,8 +26,8 @@ class Maze
26
26
  def initialize(options_hash={})
27
27
  extend CheckingMethods unless options_hash[:checking_methods] == false
28
28
  extend MoveMethods unless options_hash[:move_methods] == false
29
- @character = options_hash[:character] || "🚶 "
30
- @target = options_hash[:target] || "🍪 "
29
+ @character = options_hash[:character] || "🚶"
30
+ @target = options_hash[:target] || "🍪"
31
31
  @current_square = options_hash[:starting_player_location] ? check_coordinates("player", options_hash[:starting_player_location],options_hash[:map]) : [1,1]
32
32
  @target_location = options_hash[:target_location] ? check_coordinates("target", options_hash[:target_location],options_hash[:map]) : [7,11]
33
33
  @map = build_map(options_hash[:map])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vg_tools
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
  - JackMarx