websolr-rails 2.0.0 → 2.0.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/VERSION +1 -1
- data/lib/websolr-rails.rb +2 -2
- data/websolr-rails.gemspec +45 -0
- metadata +3 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.0.
|
|
1
|
+
2.0.1
|
data/lib/websolr-rails.rb
CHANGED
|
@@ -29,13 +29,13 @@ if ENV["WEBSOLR_URL"]
|
|
|
29
29
|
begin
|
|
30
30
|
ActsAsSolr
|
|
31
31
|
websolr_install_acts_as_solr
|
|
32
|
-
rescue
|
|
32
|
+
rescue NameError
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
begin
|
|
36
36
|
Sunspot
|
|
37
37
|
websolr_install_acts_as_solr
|
|
38
|
-
rescue
|
|
38
|
+
rescue NameError
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
module Kernel #:nodoc: all
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{websolr-rails}
|
|
8
|
+
s.version = "2.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Kyle Maxwell"]
|
|
12
|
+
s.date = %q{2009-10-15}
|
|
13
|
+
s.description = %q{Makes Sunspot and acts_as_solr play with WebSolr}
|
|
14
|
+
s.email = %q{kyle@kylemaxwell.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/websolr-rails.rb",
|
|
27
|
+
"lib/websolr.rb",
|
|
28
|
+
"websolr-rails.gemspec"
|
|
29
|
+
]
|
|
30
|
+
s.homepage = %q{http://github.com/onemorecloud/websolr-rails}
|
|
31
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = %q{1.3.4}
|
|
34
|
+
s.summary = %q{WebSolr adapter}
|
|
35
|
+
|
|
36
|
+
if s.respond_to? :specification_version then
|
|
37
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
38
|
+
s.specification_version = 3
|
|
39
|
+
|
|
40
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
41
|
+
else
|
|
42
|
+
end
|
|
43
|
+
else
|
|
44
|
+
end
|
|
45
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: websolr-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Maxwell
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-10-
|
|
12
|
+
date: 2009-10-15 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -31,6 +31,7 @@ files:
|
|
|
31
31
|
- VERSION
|
|
32
32
|
- lib/websolr-rails.rb
|
|
33
33
|
- lib/websolr.rb
|
|
34
|
+
- websolr-rails.gemspec
|
|
34
35
|
has_rdoc: true
|
|
35
36
|
homepage: http://github.com/onemorecloud/websolr-rails
|
|
36
37
|
licenses: []
|