atoyrobot 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 +4 -4
- data/.byebug_history +9 -0
- data/atoyrobot-0.1.0.gem +0 -0
- data/atoyrobot.gemspec +2 -2
- data/lib/atoyrobot/version.rb +1 -1
- metadata +6 -5
- data/bin/console +0 -15
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d4de632ca3dbdded86ea97292b82c224a7c12da
|
|
4
|
+
data.tar.gz: 7465ff326d7ff8af50b1f72d7eeed00a490027f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc7fcc05022d33aed3254e2cd8264ef6a063ec0332e30932876f06602c192a7dff6d9a2fa6a4e6227b2705350f03fc0471550610e0fafcab5717749ddd539676
|
|
7
|
+
data.tar.gz: d58be42410efa6bcfb8645d1fa4469632c09b1e3160af84727384ab7983df80c62579dcfec319b94c266e092569aa6c89dbb4f58c7a38f03d4ec7583272643ca
|
data/.byebug_history
ADDED
data/atoyrobot-0.1.0.gem
ADDED
|
Binary file
|
data/atoyrobot.gemspec
CHANGED
|
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
21
21
|
f.match(%r{^(test|spec|features)/})
|
|
22
22
|
end
|
|
23
|
-
spec.bindir = '
|
|
24
|
-
spec.executables = spec.files.grep(%r{^
|
|
23
|
+
spec.bindir = 'bin'
|
|
24
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
25
25
|
spec.require_paths = ['lib']
|
|
26
26
|
|
|
27
27
|
spec.add_development_dependency 'bundler', '~> 1.14'
|
data/lib/atoyrobot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atoyrobot
|
|
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
|
- Mohamed Elfiky
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2018-02-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -90,10 +90,12 @@ description: The application is a simulation of a toy robot movingon a square ta
|
|
|
90
90
|
of dimensions 5 units x 5 units.
|
|
91
91
|
email:
|
|
92
92
|
- mohamed.elfikyy@yahoo.com
|
|
93
|
-
executables:
|
|
93
|
+
executables:
|
|
94
|
+
- atoyrobot
|
|
94
95
|
extensions: []
|
|
95
96
|
extra_rdoc_files: []
|
|
96
97
|
files:
|
|
98
|
+
- ".byebug_history"
|
|
97
99
|
- ".gitignore"
|
|
98
100
|
- ".rspec"
|
|
99
101
|
- ".rubocop.yml"
|
|
@@ -103,10 +105,9 @@ files:
|
|
|
103
105
|
- LICENSE.txt
|
|
104
106
|
- README.md
|
|
105
107
|
- Rakefile
|
|
108
|
+
- atoyrobot-0.1.0.gem
|
|
106
109
|
- atoyrobot.gemspec
|
|
107
110
|
- bin/atoyrobot
|
|
108
|
-
- bin/console
|
|
109
|
-
- bin/setup
|
|
110
111
|
- lib/atoyrobot.rb
|
|
111
112
|
- lib/atoyrobot/board.rb
|
|
112
113
|
- lib/atoyrobot/cli.rb
|
data/bin/console
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
require 'bundler/setup'
|
|
5
|
-
require 'atoyrobot'
|
|
6
|
-
|
|
7
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
8
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
9
|
-
|
|
10
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
11
|
-
# require "pry"
|
|
12
|
-
# Pry.start
|
|
13
|
-
|
|
14
|
-
require 'irb'
|
|
15
|
-
IRB.start(__FILE__)
|