mongoid_text_search 0.1.4 → 0.1.5
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/lib/mongoid_text_search/version.rb +1 -1
- data/mongoid_text_search.gemspec +11 -13
- metadata +6 -8
data/mongoid_text_search.gemspec
CHANGED
|
@@ -3,20 +3,18 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
require "mongoid_text_search/version"
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
s.name
|
|
7
|
-
s.version
|
|
8
|
-
s.platform
|
|
9
|
-
s.authors
|
|
10
|
-
s.email
|
|
11
|
-
s.homepage
|
|
12
|
-
s.summary
|
|
13
|
-
s.description = %q{This gem is used in addition to Mongoid gem (up to version 2.0.0
|
|
6
|
+
s.name = "mongoid_text_search"
|
|
7
|
+
s.version = Mongoid::TextSearch::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Steve Randy Tantra"]
|
|
10
|
+
s.email = ["mail@steverandytantra.com"]
|
|
11
|
+
s.homepage = "http://steverandytantra.com"
|
|
12
|
+
s.summary = %q{Simple full text search for Mongoid.}
|
|
13
|
+
s.description = %q{This gem is used in addition to Mongoid gem (up to version 2.0.0), to provide simple full text search function. It takes one or many string or array of strings fields. The strings will be cleaned up and transform into array so they can be indexed. Searching later on will simply partially matches the input keywords with the indexed keywords in the arrays.}
|
|
14
14
|
|
|
15
|
-
s.
|
|
16
|
-
|
|
17
|
-
s.
|
|
18
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
15
|
+
s.files = `git ls-files`.split("\n")
|
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
18
|
s.require_paths = ["lib"]
|
|
21
19
|
|
|
22
20
|
s.add_dependency("mongoid", ">=2.0.0.beta.20")
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: mongoid_text_search
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.5
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Steve Randy Tantra
|
|
@@ -10,8 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
14
|
-
default_executable:
|
|
13
|
+
date: 2011-04-05 00:00:00 Z
|
|
15
14
|
dependencies:
|
|
16
15
|
- !ruby/object:Gem::Dependency
|
|
17
16
|
name: mongoid
|
|
@@ -24,9 +23,9 @@ dependencies:
|
|
|
24
23
|
version: 2.0.0.beta.20
|
|
25
24
|
type: :runtime
|
|
26
25
|
version_requirements: *id001
|
|
27
|
-
description: This gem is used in addition to Mongoid gem (up to version 2.0.0
|
|
26
|
+
description: This gem is used in addition to Mongoid gem (up to version 2.0.0), to provide simple full text search function. It takes one or many string or array of strings fields. The strings will be cleaned up and transform into array so they can be indexed. Searching later on will simply partially matches the input keywords with the indexed keywords in the arrays.
|
|
28
27
|
email:
|
|
29
|
-
-
|
|
28
|
+
- mail@steverandytantra.com
|
|
30
29
|
executables: []
|
|
31
30
|
|
|
32
31
|
extensions: []
|
|
@@ -43,7 +42,6 @@ files:
|
|
|
43
42
|
- lib/mongoid_text_search/keyword_generator.rb
|
|
44
43
|
- lib/mongoid_text_search/version.rb
|
|
45
44
|
- mongoid_text_search.gemspec
|
|
46
|
-
has_rdoc: true
|
|
47
45
|
homepage: http://steverandytantra.com
|
|
48
46
|
licenses: []
|
|
49
47
|
|
|
@@ -66,8 +64,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
64
|
version: "0"
|
|
67
65
|
requirements: []
|
|
68
66
|
|
|
69
|
-
rubyforge_project:
|
|
70
|
-
rubygems_version: 1.
|
|
67
|
+
rubyforge_project:
|
|
68
|
+
rubygems_version: 1.7.1
|
|
71
69
|
signing_key:
|
|
72
70
|
specification_version: 3
|
|
73
71
|
summary: Simple full text search for Mongoid.
|