customized-mongomapper-search 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -2,8 +2,8 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('customized-mongomapper-search', '0.1.0') do |p|
6
- p.description = "Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original gem was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search."
5
+ Echoe.new('customized-mongomapper-search', '0.1.1') do |p|
6
+ p.description = "Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original mongomapper-search gem (version 0.1.0) was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search."
7
7
  p.url = "http://github.com/tsxn26/tsxn-mongomapper-search"
8
8
  p.author = ["Fernando Meyer", "Thomas Nguyen"]
9
9
  p.email = "tsxn26@gmail.com"
@@ -2,12 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{customized-mongomapper-search}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Fernando Meyer, Thomas Nguyen"]
9
9
  s.date = %q{2010-04-13}
10
- s.description = %q{Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original gem was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.}
10
+ s.description = %q{Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original mongomapper-search gem (version 0.1.0) was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.}
11
11
  s.email = %q{tsxn26@gmail.com}
12
12
  s.extra_rdoc_files = ["README.rdoc", "lib/customized-mongomapper-search.rb", "lib/search.rb"]
13
13
  s.files = ["README.rdoc", "Rakefile", "lib/customized-mongomapper-search.rb", "lib/search.rb", "Manifest", "customized-mongomapper-search.gemspec"]
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = %q{customized-mongomapper-search}
18
18
  s.rubygems_version = %q{1.3.6}
19
- s.summary = %q{Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original gem was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.}
19
+ s.summary = %q{Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original mongomapper-search gem (version 0.1.0) was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.}
20
20
 
21
21
  if s.respond_to? :specification_version then
22
22
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
data/lib/search.rb CHANGED
@@ -50,6 +50,7 @@ module Search::SolrDocument
50
50
  def delete_from_search_engine
51
51
  init_connection
52
52
  @Solr.delete_by_id(self._id)
53
+ @Solr.commit
53
54
  end
54
55
  end
55
56
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Fernando Meyer, Thomas Nguyen
@@ -57,7 +57,7 @@ dependencies:
57
57
  version: 2.3.11
58
58
  type: :runtime
59
59
  version_requirements: *id003
60
- description: Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original gem was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.
60
+ description: Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original mongomapper-search gem (version 0.1.0) was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.
61
61
  email: tsxn26@gmail.com
62
62
  executables: []
63
63
 
@@ -109,6 +109,6 @@ rubyforge_project: customized-mongomapper-search
109
109
  rubygems_version: 1.3.6
110
110
  signing_key:
111
111
  specification_version: 3
112
- summary: Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original gem was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.
112
+ summary: Easily integreate mongo mapper with enterprise search like solr. CUSTOMIZED to use a specified Solr URL in the model. Original mongomapper-search gem (version 0.1.0) was written by Fernando Meyer and can be found at http://github.com/fmeyer/mongomapper-search.
113
113
  test_files: []
114
114