keyword_search 1.0.3 → 1.0.4
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 +5 -0
- data/Rakefile +1 -1
- data/lib/keyword_search.rb +1 -1
- metadata +3 -3
data/History.txt
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
= 1.0.4 / 2007-01-15
|
|
2
|
+
|
|
3
|
+
* Updated Dhaka dependency to lock to version 0.0.6 due to breakage of backwards compatibility in 1.0.0.
|
|
4
|
+
Will update to allow 1.0.0+ once changes to Dhaka API stabilize (thanks to Dhaka author Mushfeq Khan for the tip)
|
|
5
|
+
|
|
1
6
|
== 1.0.0 / 2007-01-08
|
|
2
7
|
|
|
3
8
|
* Initial release
|
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ Hoe.new('keyword_search', KeywordSearch::VERSION) do |p|
|
|
|
12
12
|
p.author = 'Bruce Williams'
|
|
13
13
|
p.email = 'bruce@codefluency.com'
|
|
14
14
|
p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
|
|
15
|
-
p.extra_deps = [['dhaka', '
|
|
15
|
+
p.extra_deps = [['dhaka', '= 0.0.6']]
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
task :rebuild_parser do
|
data/lib/keyword_search.rb
CHANGED
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: keyword_search
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 1.0.
|
|
7
|
-
date: 2007-01-
|
|
6
|
+
version: 1.0.4
|
|
7
|
+
date: 2007-01-15 00:00:00 -07:00
|
|
8
8
|
summary: Generic support for extracting GMail-style search keywords/values from strings
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -58,7 +58,7 @@ dependencies:
|
|
|
58
58
|
version_requirement:
|
|
59
59
|
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
60
60
|
requirements:
|
|
61
|
-
- - "
|
|
61
|
+
- - "="
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
63
|
version: 0.0.6
|
|
64
64
|
version:
|