delano-annoy 0.5.1 → 0.5.2
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.
- data/CHANGES.txt +3 -1
- data/README.rdoc +6 -2
- data/annoy.gemspec +1 -1
- data/lib/annoy.rb +1 -1
- metadata +1 -1
data/CHANGES.txt
CHANGED
@@ -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.
|
data/README.rdoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
= Annoy - v0.5
|
2
2
|
|
3
|
-
|
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
|
|
data/annoy.gemspec
CHANGED
@@ -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.
|
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"
|
data/lib/annoy.rb
CHANGED