another_toy_robot 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/toy_robot/version.rb +1 -1
- data/toy_robot.gemspec +17 -14
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5494c5205c93e40a1d407241deaee86eaa74a52
|
4
|
+
data.tar.gz: c9c9e04e435fd6bb8124d5d62252d5a3eb8a1f53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01717def828b3def77e4a74155ecdc89075d25cea37f49bf8caec4d58aeaedfa6c4496ce16236863d4c947c21070ed082774abf8264d0561b99c945c7854220e
|
7
|
+
data.tar.gz: d2f5c87e56fe4e7bf36664799f42a353feb6a816ccd6912baad43f929a82b1511e686e5077ab2530a6ad7358de82d601a554dd053b5369bba7917e477aa12a54
|
data/.gitignore
CHANGED
data/lib/toy_robot/version.rb
CHANGED
data/toy_robot.gemspec
CHANGED
@@ -4,22 +4,25 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'toy_robot/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name
|
8
|
-
spec.version
|
9
|
-
spec.date
|
10
|
-
spec.authors
|
11
|
-
spec.email
|
12
|
-
spec.homepage
|
13
|
-
spec.summary
|
14
|
-
spec.
|
15
|
-
|
16
|
-
"oriented design, employing the command design pattern."
|
17
|
-
spec.license = "MIT"
|
7
|
+
spec.name = "another_toy_robot"
|
8
|
+
spec.version = ToyRobot::VERSION
|
9
|
+
spec.date = "2016-11-27"
|
10
|
+
spec.authors = "Sheldon J. Johnson"
|
11
|
+
spec.email = "sheldon.j.johnson@outlook.com"
|
12
|
+
spec.homepage = "https://github.com/drzel/toy_robot"
|
13
|
+
spec.summary = "Another toy robot demonstration app"
|
14
|
+
spec.required_ruby_version = ">= 2.3"
|
15
|
+
spec.license = "MIT"
|
18
16
|
|
19
|
-
spec.
|
17
|
+
spec.description = <<~HEREDOC
|
18
|
+
The application is a simulation of a toy robot moving on a square tabletop.
|
19
|
+
It is an example of a well tested, object oriented design, employing the command design pattern.
|
20
|
+
HEREDOC
|
21
|
+
|
22
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
23
|
f.match(%r{^(test|spec|features)/})
|
21
24
|
end
|
22
25
|
|
23
|
-
spec.bindir
|
24
|
-
spec.executables
|
26
|
+
spec.bindir = "bin"
|
27
|
+
spec.executables << "toy_robot"
|
25
28
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: another_toy_robot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sheldon J. Johnson
|
@@ -10,9 +10,9 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2016-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
14
|
-
|
15
|
-
design pattern.
|
13
|
+
description: |
|
14
|
+
The application is a simulation of a toy robot moving on a square tabletop.
|
15
|
+
It is an example of a well tested, object oriented design, employing the command design pattern.
|
16
16
|
email: sheldon.j.johnson@outlook.com
|
17
17
|
executables:
|
18
18
|
- toy_robot
|
@@ -49,7 +49,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
49
|
requirements:
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: '
|
52
|
+
version: '2.3'
|
53
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - ">="
|