RLCoreKickstart 0.0.8 → 0.0.9
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/bin/testgameboard +11 -1
- data/contributors.txt +1 -0
- data/rlcorecoursekickstarter.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b361e176107d9728c88e0aa6dda427ad36e57718
|
|
4
|
+
data.tar.gz: 8836bba4816bd9d77f6fd409b99fcc6faf0e22b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01bc9395bde8a40380392abc179aa1e94bbf1cf572cb0b41705240795fa1418e3ad901ac6a6ccc098226a1a71505d417eb9a67c5a61e276cabe6757b887957a0
|
|
7
|
+
data.tar.gz: 8c6ab22d541b156b8dd145e3e38051990611f8b21116ceb5ac61d095865cac1587f571058bf1a33989c18b7b289b776f0325e093ca02b2657161209a6bef2099
|
data/bin/testgameboard
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
#! /usr/bin/env ruby
|
|
2
|
-
|
|
2
|
+
begin
|
|
3
|
+
if ARGV[0] == '-show'
|
|
4
|
+
puts IO.read(__FILE__)
|
|
5
|
+
exit 0
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
require './5_week/3e_gameboard'
|
|
9
|
+
rescue LoadError
|
|
10
|
+
STDERR.puts "I require a file named ./5_week/3e_gameboard"
|
|
11
|
+
end
|
|
12
|
+
|
|
3
13
|
|
|
4
14
|
# track how many guesses the user makes
|
|
5
15
|
no_of_guesses = 0
|
data/contributors.txt
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: RLCoreKickstart
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Victor Goff
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Prepares a set of folders for the RubyLearning Core Ruby Course, install
|
|
14
14
|
by issuing command "gem install RLCoreKickstart"
|