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 CHANGED
@@ -1,6 +1,6 @@
1
1
  = rubybooty
2
2
 
3
- Description goes here.
3
+ A simple tool to help Ruby groups hold a lottery to help raise money for the group.
4
4
 
5
5
  == Contributing to rubybooty
6
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rubybooty}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Russ Smith"]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rubybooty
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
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: -81276610123237984
119
+ hash: 3023869167933863518
120
120
  segments:
121
121
  - 0
122
122
  version: "0"