annoy 0.5.5 → 0.5.6
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 +5 -1
- data/Rakefile +7 -2
- data/annoy.gemspec +1 -1
- metadata +2 -2
data/CHANGES.txt
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
ANNOY, CHANGES
|
|
2
2
|
|
|
3
|
-
#### 0.5.
|
|
3
|
+
#### 0.5.6 (2010-02-20) ###############################
|
|
4
|
+
|
|
5
|
+
* CHANGE: Remove hanna dependency [Diego Elio 'Flameeyes' Pettenò]
|
|
6
|
+
|
|
7
|
+
#### 0.5.5 (2009-08-01) ###############################
|
|
4
8
|
|
|
5
9
|
* CHANGE: Increased default timeout period to 3600 seconds.
|
|
6
10
|
|
data/Rakefile
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'rake/clean'
|
|
3
3
|
require 'rake/gempackagetask'
|
|
4
|
-
require 'hanna/rdoctask'
|
|
5
4
|
require 'fileutils'
|
|
6
5
|
include FileUtils
|
|
7
|
-
|
|
6
|
+
|
|
7
|
+
begin
|
|
8
|
+
require 'hanna/rdoctask'
|
|
9
|
+
rescue LoadError
|
|
10
|
+
require 'rake/rdoctask'
|
|
11
|
+
end
|
|
12
|
+
|
|
8
13
|
task :default => :package
|
|
9
14
|
|
|
10
15
|
# CONFIG =============================================================
|
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.6"
|
|
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"
|
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.
|
|
4
|
+
version: 0.5.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Delano Mandelbaum
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-02-20 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|