vg_tools 0.1.3 → 0.1.4

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: c1f6a1f644d84d3998a11324f6d6ce653271be44
4
- data.tar.gz: 9790f034f08522b762ad34f824c02feaaf007a51
3
+ metadata.gz: cbc2a6d9bf0c02b44fb81ac64c7cd2a6b91122df
4
+ data.tar.gz: 295c15a08829f51173483a41c5a8c598cac42ff3
5
5
  SHA512:
6
- metadata.gz: a47d42820f10c7d568ad733209bfff2bb8a6ccf12992dcbff7edd46c199ff5349dc3ae00f7ca4da59a1a05443d9568971e4f75f6728fd33e888e45cc679fee68
7
- data.tar.gz: 4b71abf3eb5ef7a199f828a2c59df34c093f96c6a21031b78f17e2e4ddcaa6defa900312704e9971208a3ecd2cb8fb1f5fcfc50051fb958a4b92e03988a04d2f
6
+ metadata.gz: 8996eb588d51acecdbc225ecbb130149dfe35e7ec7dff555e67c277ad80745d7a50ff833f8fc7ddd2fbd24b4094876514cb9a09f1e123c0bcf0f334431a98dbb
7
+ data.tar.gz: dc91a3fc347758e78024e815ac89bd271361a311c47ea189eb317965432fcb97d6b35b082d6dabf636ee4b4ed74ba0ffc5890b9418c6f88c7dcee97b8f0bd343
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] || "$ ".red
30
- @target = options_hash[:target] || "@ ".red
29
+ @character = options_hash[:character] || "$ ".yellow
30
+ @target = options_hash[:target] || "@ ".yellow
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.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vg_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - JackMarx
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-04-10 00:00:00.000000000 Z
11
+ date: 2017-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler