annoy 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGES.txt +3 -1
  2. data/README.rdoc +6 -2
  3. data/annoy.gemspec +1 -1
  4. data/lib/annoy.rb +1 -1
  5. metadata +1 -1
@@ -1,11 +1,13 @@
1
1
  ANNOY, CHANGES
2
2
 
3
+ #### 0.5.2 (2009-06-03) ###############################
4
+
5
+ * FIXED: Bug in user get_user_input after timeout expires
3
6
 
4
7
  #### 0.5.1 (2009-06-03) ###############################
5
8
 
6
9
  * ADDED: get_user_input method.
7
10
 
8
-
9
11
  #### 0.5.0 (2009-05-07) ###############################
10
12
 
11
13
  * First public release. See commit history for solutious-rudy.
@@ -1,6 +1,6 @@
1
1
  = Annoy - v0.5
2
2
 
3
- All your system-independent infoz in one handy class.
3
+ Like your annoying friend that asks you questions all the time.
4
4
 
5
5
  == Installation
6
6
 
@@ -12,7 +12,11 @@ Via Rubygems, one of:
12
12
  or via download:
13
13
  * annoy-latest.tar.gz[http://github.com/delano/annoy/tarball/latest]
14
14
  * annoy-latest.zip[http://github.com/delano/annoy/zipball/latest]
15
-
15
+
16
+ == More Info
17
+
18
+ * GitHub[http://github.com/delano/annoy]
19
+ * Rdocs[http://delano.github.com/annoy]
16
20
 
17
21
  == Credits
18
22
 
@@ -1,7 +1,7 @@
1
1
  @spec = Gem::Specification.new do |s|
2
2
  s.name = "annoy"
3
3
  s.rubyforge_project = "annoy"
4
- s.version = "0.5.1"
4
+ s.version = "0.5.2"
5
5
  s.summary = "Annoy: Like your annoying friend that asks you questions all the time."
6
6
  s.description = s.summary
7
7
  s.author = "Delano Mandelbaum"
@@ -231,7 +231,7 @@ class Annoy
231
231
  }
232
232
  end
233
233
  rescue Timeout::Error => ex
234
- writer.puts $/, "Times up!"
234
+ puts $/, "Times up!"
235
235
  end
236
236
  response
237
237
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: annoy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum