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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92c8914f8fef80c67d9409a34d181e22f170de63
4
- data.tar.gz: e6b25919ceaf73b6d4b2febe0a3aad425dbdee1a
3
+ metadata.gz: 2d4de632ca3dbdded86ea97292b82c224a7c12da
4
+ data.tar.gz: 7465ff326d7ff8af50b1f72d7eeed00a490027f7
5
5
  SHA512:
6
- metadata.gz: f43eaaae236c6e8fdd6f8bbce72dca5facae38721ee3536a3edb3be0d50bfc99766e1e4b0d29decda81589cdca1aa65a221f97521948dc0aa374f1fdd5a24b45
7
- data.tar.gz: cad5c581cc051d31c1a29bf45f799958f87227ff28c1f9ca28a7d0e77cbc3ba3ebc1f6de1f9509c33ce521800c7a22148c41495d3ddcdf5d1be20859e9f0d12a
6
+ metadata.gz: cc7fcc05022d33aed3254e2cd8264ef6a063ec0332e30932876f06602c192a7dff6d9a2fa6a4e6227b2705350f03fc0471550610e0fafcab5717749ddd539676
7
+ data.tar.gz: d58be42410efa6bcfb8645d1fa4469632c09b1e3160af84727384ab7983df80c62579dcfec319b94c266e092569aa6c89dbb4f58c7a38f03d4ec7583272643ca
@@ -0,0 +1,9 @@
1
+ continue
2
+ spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
3
+ spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
4
+ spec.bindir = 'bin'
5
+ spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
6
+ c
7
+ spec.files
8
+ spec.files.grep(%r{^exe/})
9
+ continue
Binary file
@@ -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 = 'exe'
24
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
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'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Atoyrobot
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mohamed Elfiky
8
8
  autorequire:
9
- bindir: exe
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
@@ -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__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here