recordsearch 1.1.0 → 1.1.1
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/History.txt +4 -0
- data/README.txt +1 -1
- data/lib/recordsearch/search.rb +1 -1
- data/lib/recordsearch/version.rb +1 -1
- data/test/test_recordsearch.rb +3 -0
- metadata +4 -4
data/History.txt
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
== 1.1.1 2009-12-26
|
|
2
|
+
|
|
3
|
+
* Workaround for a issue in mathn: http://redmine.ruby-lang.org/issues/show/2121 . If you have required mathn and then used recordsearch, a nil record was returned as the data you were looking for.
|
|
4
|
+
|
|
1
5
|
== 1.1.0 2009-09-30
|
|
2
6
|
|
|
3
7
|
* changes to make it work on Ruby 1.9.1
|
data/README.txt
CHANGED
data/lib/recordsearch/search.rb
CHANGED
data/lib/recordsearch/version.rb
CHANGED
data/test/test_recordsearch.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recordsearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luis Parravicini
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-12-26 00:00:00 -02:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -20,7 +20,7 @@ dependencies:
|
|
|
20
20
|
requirements:
|
|
21
21
|
- - ">="
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version: 2.
|
|
23
|
+
version: 2.4.0
|
|
24
24
|
version:
|
|
25
25
|
description: Search on a text file using binary search
|
|
26
26
|
email: lparravi@gmail.com
|
|
@@ -92,6 +92,6 @@ signing_key:
|
|
|
92
92
|
specification_version: 3
|
|
93
93
|
summary: Search on a text file using binary search
|
|
94
94
|
test_files:
|
|
95
|
-
- test/test_recordsearch.rb
|
|
96
95
|
- test/test_helper.rb
|
|
97
96
|
- test/test_index.rb
|
|
97
|
+
- test/test_recordsearch.rb
|