vg_tools 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f79f20586b1485339daad331a6cf47126241907
4
- data.tar.gz: c5d442a396ec3ebeb96e54abab5216bedf87edde
3
+ metadata.gz: 87396831c322cc1ab251c8d74c6782aec2cc0467
4
+ data.tar.gz: ced3b9c46f391e8c72ad720279226851e2189462
5
5
  SHA512:
6
- metadata.gz: e47e908bc72851f84d37dbf5760e482feda6205e149f96c62437c0091cbdd6226a143cdcfc0b0981f150c6ef3154e57e6f616fc85e4bf31385b63630a66d3fde
7
- data.tar.gz: 773eec81e9c3307ebe5a89398d64f003c49b8fe5a4e63bd37bdd76db6f33c5dd7381d69786b76288f57cb5e5f603c35df092253f92a8e63d992278462dc6fc51
6
+ metadata.gz: c8169af4836edf7f9bef8da356f966717c66f41435fdc620728a4d22adea11360334b821aa23b3229be0d910b7fcd9ef6f97a4fb1ffb62ee1cce15e2f1e3fd3c
7
+ data.tar.gz: db7de35034765ea04daedbe09a970fe30786fa371da25521847917e495e22da452e4f05574de1915a806f6310a9e4c7442178a120262488228515881ca42b17d
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] || "$ ".pink
30
+ @target = options_hash[:target] || "@ ".pink
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])
@@ -1,3 +1,3 @@
1
1
  module VgTools
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - JackMarx