rubybooty 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/rubybooty.rb +3 -3
- data/rubybooty.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/lib/rubybooty.rb
CHANGED
@@ -12,13 +12,13 @@ module Rubybooty
|
|
12
12
|
entrants = {}
|
13
13
|
|
14
14
|
while true
|
15
|
-
name = ask("Entrants Name: ")
|
15
|
+
name = ask("Entrants Name (enter 'done' to finish): ")
|
16
16
|
break if name.downcase == "done"
|
17
|
-
entries = ask("Number of Entries: ", Integer)
|
17
|
+
entries = ask("Number of Entries: (integer only)", Integer)
|
18
18
|
entrants[name] = entries
|
19
19
|
end
|
20
20
|
|
21
|
-
agree("Run Now? ")
|
21
|
+
agree("Run Now? (yes/no)")
|
22
22
|
|
23
23
|
entries = []
|
24
24
|
entrants.each { |k,v| v.times { entries << k }}
|
data/rubybooty.gemspec
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: rubybooty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Russ Smith
|
@@ -116,7 +116,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
116
116
|
requirements:
|
117
117
|
- - ">="
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
hash:
|
119
|
+
hash: 3023869167933863518
|
120
120
|
segments:
|
121
121
|
- 0
|
122
122
|
version: "0"
|