robotoy 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: 56a479731ddcb3a09a0793b69ead552469426cf1
4
- data.tar.gz: 3893ccbc3181adff03d2d14a8e70473c530bf84c
3
+ metadata.gz: e015d7a1849e976032c2453442cf3a2fb7327e39
4
+ data.tar.gz: e1b6006195be27a9df41cc675a4e7b9d4d6ce6dd
5
5
  SHA512:
6
- metadata.gz: eb4968be37f2beef217592f526b0995a8404bc92bf3ba520a0692705386a193308e10aab31e22179115af47a31c21e543f3be0d1854cb2e5e774f769f041a9ff
7
- data.tar.gz: 0c0f8f8532b621faeb465b94260be048393fd8142949d4ce503ce67259676f0bc42c0cdac3e80782f54409d065a18b84ac64c97715351d8c76af997a6c343b23
6
+ metadata.gz: 4d173d6760d33fe53360232e7a1ad0f7a830f7cd7885edf5f7cc5fbf18bb55a31add87fcb86e89bb4eafce004f9d7b6e64813136cb36132a85706c68fc680ba7
7
+ data.tar.gz: 6118bc48896fb978a83a245d7b7c3f3cd82481d55e4124f39a238ad2350d13e24d03618277757045ccfdff1d8da7568bdcfd3debecaaf069ed67323dfb2e8ef5
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  [![Build Status](https://travis-ci.org/hosseintoussi/robotoy.svg?branch=master)](https://travis-ci.org/hosseintoussi/robotoy)
2
+ [![Gem Version](https://badge.fury.io/rb/robotoy.svg)](https://badge.fury.io/rb/robotoy)
2
3
  # Robotoy
3
4
  - The application is a simulation of a toy robot moving on a square tabletop, of dimensions 5 units x 5 units.
4
5
  - There are no other obstructions on the table surface.
@@ -2,7 +2,7 @@ module Robotoy
2
2
  class Table
3
3
  attr_reader :x, :y
4
4
 
5
- def initialize(x: 5, y: 5)
5
+ def initialize(x: 4, y: 4)
6
6
  @x = x
7
7
  @y = y
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module Robotoy
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: robotoy
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
  - hosseintoussi