acts_as_solr_reloaded 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +22 -0
- data/README.markdown +64 -0
- data/README.rdoc +93 -0
- data/Rakefile +71 -0
- data/TESTING_THE_PLUGIN +25 -0
- data/VERSION +1 -0
- data/config/solr.yml +14 -0
- data/config/solr_environment.rb +35 -0
- data/generators/dynamic_attributes_migration/dynamic_attributes_migration_generator.rb +7 -0
- data/generators/dynamic_attributes_migration/templates/migration.rb +15 -0
- data/generators/local_migration/local_migration_generator.rb +7 -0
- data/generators/local_migration/templates/migration.rb +16 -0
- data/lib/acts_as_solr.rb +65 -0
- data/lib/acts_as_solr/acts_methods.rb +363 -0
- data/lib/acts_as_solr/class_methods.rb +240 -0
- data/lib/acts_as_solr/common_methods.rb +89 -0
- data/lib/acts_as_solr/deprecation.rb +61 -0
- data/lib/acts_as_solr/dynamic_attribute.rb +3 -0
- data/lib/acts_as_solr/instance_methods.rb +194 -0
- data/lib/acts_as_solr/lazy_document.rb +18 -0
- data/lib/acts_as_solr/local.rb +4 -0
- data/lib/acts_as_solr/parser_methods.rb +248 -0
- data/lib/acts_as_solr/search_results.rb +74 -0
- data/lib/acts_as_solr/solr_fixtures.rb +13 -0
- data/lib/acts_as_solr/tasks.rb +10 -0
- data/lib/acts_as_solr/tasks/database.rake +16 -0
- data/lib/acts_as_solr/tasks/solr.rake +142 -0
- data/lib/acts_as_solr/tasks/test.rake +5 -0
- data/lib/solr.rb +26 -0
- data/lib/solr/connection.rb +177 -0
- data/lib/solr/document.rb +75 -0
- data/lib/solr/exception.rb +13 -0
- data/lib/solr/field.rb +36 -0
- data/lib/solr/importer.rb +19 -0
- data/lib/solr/importer/array_mapper.rb +26 -0
- data/lib/solr/importer/delimited_file_source.rb +38 -0
- data/lib/solr/importer/hpricot_mapper.rb +27 -0
- data/lib/solr/importer/mapper.rb +51 -0
- data/lib/solr/importer/solr_source.rb +41 -0
- data/lib/solr/importer/xpath_mapper.rb +35 -0
- data/lib/solr/indexer.rb +52 -0
- data/lib/solr/request.rb +26 -0
- data/lib/solr/request/add_document.rb +58 -0
- data/lib/solr/request/base.rb +36 -0
- data/lib/solr/request/commit.rb +29 -0
- data/lib/solr/request/delete.rb +48 -0
- data/lib/solr/request/dismax.rb +46 -0
- data/lib/solr/request/index_info.rb +22 -0
- data/lib/solr/request/modify_document.rb +46 -0
- data/lib/solr/request/optimize.rb +19 -0
- data/lib/solr/request/ping.rb +36 -0
- data/lib/solr/request/select.rb +54 -0
- data/lib/solr/request/spellcheck.rb +30 -0
- data/lib/solr/request/standard.rb +406 -0
- data/lib/solr/request/update.rb +23 -0
- data/lib/solr/response.rb +27 -0
- data/lib/solr/response/add_document.rb +17 -0
- data/lib/solr/response/base.rb +42 -0
- data/lib/solr/response/commit.rb +15 -0
- data/lib/solr/response/delete.rb +13 -0
- data/lib/solr/response/dismax.rb +8 -0
- data/lib/solr/response/index_info.rb +26 -0
- data/lib/solr/response/modify_document.rb +17 -0
- data/lib/solr/response/optimize.rb +14 -0
- data/lib/solr/response/ping.rb +26 -0
- data/lib/solr/response/ruby.rb +42 -0
- data/lib/solr/response/select.rb +17 -0
- data/lib/solr/response/spellcheck.rb +20 -0
- data/lib/solr/response/standard.rb +65 -0
- data/lib/solr/response/xml.rb +39 -0
- data/lib/solr/solrtasks.rb +27 -0
- data/lib/solr/util.rb +32 -0
- data/lib/solr/xml.rb +44 -0
- data/solr/README.txt +36 -0
- data/solr/etc/jetty.xml +212 -0
- data/solr/etc/webdefault.xml +379 -0
- data/solr/exampledocs/books.csv +11 -0
- data/solr/exampledocs/hd.xml +46 -0
- data/solr/exampledocs/ipod_other.xml +50 -0
- data/solr/exampledocs/ipod_video.xml +35 -0
- data/solr/exampledocs/locales.xml +16 -0
- data/solr/exampledocs/mem.xml +58 -0
- data/solr/exampledocs/monitor.xml +31 -0
- data/solr/exampledocs/monitor2.xml +30 -0
- data/solr/exampledocs/mp500.xml +39 -0
- data/solr/exampledocs/post.jar +0 -0
- data/solr/exampledocs/post.sh +28 -0
- data/solr/exampledocs/sd500.xml +33 -0
- data/solr/exampledocs/solr.xml +38 -0
- data/solr/exampledocs/spellchecker.xml +58 -0
- data/solr/exampledocs/test_utf8.sh +83 -0
- data/solr/exampledocs/utf8-example.xml +42 -0
- data/solr/exampledocs/vidcard.xml +52 -0
- data/solr/lib/jetty-6.1.3.jar +0 -0
- data/solr/lib/jetty-util-6.1.3.jar +0 -0
- data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
- data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
- data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
- data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
- data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
- data/solr/multicore/README.txt +3 -0
- data/solr/multicore/core0/conf/schema.xml +41 -0
- data/solr/multicore/core0/conf/solrconfig.xml +40 -0
- data/solr/multicore/core1/conf/schema.xml +41 -0
- data/solr/multicore/core1/conf/solrconfig.xml +40 -0
- data/solr/multicore/exampledocs/ipod_other.xml +34 -0
- data/solr/multicore/exampledocs/ipod_video.xml +22 -0
- data/solr/multicore/solr.xml +35 -0
- data/solr/solr/README.txt +52 -0
- data/solr/solr/bin/abc +190 -0
- data/solr/solr/bin/abo +190 -0
- data/solr/solr/bin/backup +117 -0
- data/solr/solr/bin/backupcleaner +142 -0
- data/solr/solr/bin/commit +133 -0
- data/solr/solr/bin/optimize +134 -0
- data/solr/solr/bin/readercycle +129 -0
- data/solr/solr/bin/rsyncd-disable +77 -0
- data/solr/solr/bin/rsyncd-enable +76 -0
- data/solr/solr/bin/rsyncd-start +145 -0
- data/solr/solr/bin/rsyncd-stop +105 -0
- data/solr/solr/bin/scripts-util +99 -0
- data/solr/solr/bin/snapcleaner +154 -0
- data/solr/solr/bin/snapinstaller +198 -0
- data/solr/solr/bin/snappuller +269 -0
- data/solr/solr/bin/snappuller-disable +77 -0
- data/solr/solr/bin/snappuller-enable +77 -0
- data/solr/solr/bin/snapshooter +136 -0
- data/solr/solr/conf/admin-extra.html +31 -0
- data/solr/solr/conf/elevate.xml +36 -0
- data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/solr/conf/protwords.txt +21 -0
- data/solr/solr/conf/schema.xml +132 -0
- data/solr/solr/conf/scripts.conf +24 -0
- data/solr/solr/conf/solrconfig.xml +906 -0
- data/solr/solr/conf/spellings.txt +2 -0
- data/solr/solr/conf/stopwords.txt +58 -0
- data/solr/solr/conf/synonyms.txt +31 -0
- data/solr/solr/conf/xslt/example.xsl +132 -0
- data/solr/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/solr/conf/xslt/luke.xsl +337 -0
- data/solr/solr/lib/localsolr.jar +0 -0
- data/solr/solr/lib/lucene-spatial-2.9-dev.jar +0 -0
- data/solr/start.jar +0 -0
- data/solr/webapps/solr.war +0 -0
- data/test/config/solr.yml +2 -0
- data/test/db/connections/mysql/connection.rb +11 -0
- data/test/db/connections/sqlite/connection.rb +8 -0
- data/test/db/migrate/001_create_books.rb +15 -0
- data/test/db/migrate/002_create_movies.rb +12 -0
- data/test/db/migrate/003_create_categories.rb +11 -0
- data/test/db/migrate/004_create_electronics.rb +16 -0
- data/test/db/migrate/005_create_authors.rb +12 -0
- data/test/db/migrate/006_create_postings.rb +9 -0
- data/test/db/migrate/007_create_posts.rb +13 -0
- data/test/db/migrate/008_create_gadgets.rb +11 -0
- data/test/db/migrate/009_create_dynamic_attributes.rb +15 -0
- data/test/db/migrate/010_create_advertises.rb +13 -0
- data/test/db/migrate/011_create_locals.rb +15 -0
- data/test/db/test.db +0 -0
- data/test/fixtures/advertises.yml +12 -0
- data/test/fixtures/authors.yml +9 -0
- data/test/fixtures/books.yml +13 -0
- data/test/fixtures/categories.yml +7 -0
- data/test/fixtures/db_definitions/mysql.sql +41 -0
- data/test/fixtures/dynamic_attributes.yml +11 -0
- data/test/fixtures/electronics.yml +49 -0
- data/test/fixtures/locals.yml +9 -0
- data/test/fixtures/movies.yml +9 -0
- data/test/fixtures/postings.yml +10 -0
- data/test/functional/acts_as_solr_test.rb +463 -0
- data/test/functional/association_indexing_test.rb +37 -0
- data/test/functional/faceted_search_test.rb +163 -0
- data/test/functional/multi_solr_search_test.rb +57 -0
- data/test/models/advertise.rb +6 -0
- data/test/models/author.rb +10 -0
- data/test/models/book.rb +10 -0
- data/test/models/category.rb +8 -0
- data/test/models/dynamic_attribute.rb +7 -0
- data/test/models/electronic.rb +25 -0
- data/test/models/gadget.rb +9 -0
- data/test/models/local.rb +7 -0
- data/test/models/movie.rb +17 -0
- data/test/models/novel.rb +2 -0
- data/test/models/post.rb +3 -0
- data/test/models/posting.rb +11 -0
- data/test/test_helper.rb +56 -0
- data/test/unit/acts_methods_shoulda.rb +95 -0
- data/test/unit/class_methods_shoulda.rb +85 -0
- data/test/unit/common_methods_shoulda.rb +111 -0
- data/test/unit/instance_methods_shoulda.rb +372 -0
- data/test/unit/lazy_document_shoulda.rb +34 -0
- data/test/unit/parser_instance.rb +19 -0
- data/test/unit/parser_methods_shoulda.rb +338 -0
- data/test/unit/solr_instance.rb +74 -0
- data/test/unit/test_helper.rb +24 -0
- metadata +290 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
dir = File.dirname(__FILE__)
|
2
|
+
$:.unshift(File.join(File.expand_path(dir), "..", "..", "lib"))
|
3
|
+
|
4
|
+
require 'rubygems'
|
5
|
+
require 'test/unit'
|
6
|
+
require 'acts_as_solr'
|
7
|
+
require 'activesupport'
|
8
|
+
require 'mocha'
|
9
|
+
require 'active_support'
|
10
|
+
require 'logger'
|
11
|
+
require File.expand_path("#{dir}/solr_instance")
|
12
|
+
require File.expand_path("#{dir}/parser_instance")
|
13
|
+
require 'erb'
|
14
|
+
require 'ostruct'
|
15
|
+
|
16
|
+
if RUBY_VERSION =~ /^1\.9/
|
17
|
+
puts "\nRunning the unit test suite doesn't as of yet work with Ruby 1.9, because Mocha hasn't yet been updated to use minitest."
|
18
|
+
puts
|
19
|
+
exit 1
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'mocha'
|
23
|
+
gem 'thoughtbot-shoulda'
|
24
|
+
require 'shoulda'
|
metadata
ADDED
@@ -0,0 +1,290 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: acts_as_solr_reloaded
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Diego Carrion
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-21 00:00:00 -02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: This gem adds full text search capabilities and many other nifty features from Apache Solr to any Rails model.
|
17
|
+
email: dc.rec1@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- LICENSE
|
24
|
+
- README.markdown
|
25
|
+
- README.rdoc
|
26
|
+
files:
|
27
|
+
- LICENSE
|
28
|
+
- README.markdown
|
29
|
+
- README.rdoc
|
30
|
+
- Rakefile
|
31
|
+
- TESTING_THE_PLUGIN
|
32
|
+
- VERSION
|
33
|
+
- config/solr.yml
|
34
|
+
- config/solr_environment.rb
|
35
|
+
- generators/dynamic_attributes_migration/dynamic_attributes_migration_generator.rb
|
36
|
+
- generators/dynamic_attributes_migration/templates/migration.rb
|
37
|
+
- generators/local_migration/local_migration_generator.rb
|
38
|
+
- generators/local_migration/templates/migration.rb
|
39
|
+
- lib/acts_as_solr.rb
|
40
|
+
- lib/acts_as_solr/acts_methods.rb
|
41
|
+
- lib/acts_as_solr/class_methods.rb
|
42
|
+
- lib/acts_as_solr/common_methods.rb
|
43
|
+
- lib/acts_as_solr/deprecation.rb
|
44
|
+
- lib/acts_as_solr/dynamic_attribute.rb
|
45
|
+
- lib/acts_as_solr/instance_methods.rb
|
46
|
+
- lib/acts_as_solr/lazy_document.rb
|
47
|
+
- lib/acts_as_solr/local.rb
|
48
|
+
- lib/acts_as_solr/parser_methods.rb
|
49
|
+
- lib/acts_as_solr/search_results.rb
|
50
|
+
- lib/acts_as_solr/solr_fixtures.rb
|
51
|
+
- lib/acts_as_solr/tasks.rb
|
52
|
+
- lib/acts_as_solr/tasks/database.rake
|
53
|
+
- lib/acts_as_solr/tasks/solr.rake
|
54
|
+
- lib/acts_as_solr/tasks/test.rake
|
55
|
+
- lib/solr.rb
|
56
|
+
- lib/solr/connection.rb
|
57
|
+
- lib/solr/document.rb
|
58
|
+
- lib/solr/exception.rb
|
59
|
+
- lib/solr/field.rb
|
60
|
+
- lib/solr/importer.rb
|
61
|
+
- lib/solr/importer/array_mapper.rb
|
62
|
+
- lib/solr/importer/delimited_file_source.rb
|
63
|
+
- lib/solr/importer/hpricot_mapper.rb
|
64
|
+
- lib/solr/importer/mapper.rb
|
65
|
+
- lib/solr/importer/solr_source.rb
|
66
|
+
- lib/solr/importer/xpath_mapper.rb
|
67
|
+
- lib/solr/indexer.rb
|
68
|
+
- lib/solr/request.rb
|
69
|
+
- lib/solr/request/add_document.rb
|
70
|
+
- lib/solr/request/base.rb
|
71
|
+
- lib/solr/request/commit.rb
|
72
|
+
- lib/solr/request/delete.rb
|
73
|
+
- lib/solr/request/dismax.rb
|
74
|
+
- lib/solr/request/index_info.rb
|
75
|
+
- lib/solr/request/modify_document.rb
|
76
|
+
- lib/solr/request/optimize.rb
|
77
|
+
- lib/solr/request/ping.rb
|
78
|
+
- lib/solr/request/select.rb
|
79
|
+
- lib/solr/request/spellcheck.rb
|
80
|
+
- lib/solr/request/standard.rb
|
81
|
+
- lib/solr/request/update.rb
|
82
|
+
- lib/solr/response.rb
|
83
|
+
- lib/solr/response/add_document.rb
|
84
|
+
- lib/solr/response/base.rb
|
85
|
+
- lib/solr/response/commit.rb
|
86
|
+
- lib/solr/response/delete.rb
|
87
|
+
- lib/solr/response/dismax.rb
|
88
|
+
- lib/solr/response/index_info.rb
|
89
|
+
- lib/solr/response/modify_document.rb
|
90
|
+
- lib/solr/response/optimize.rb
|
91
|
+
- lib/solr/response/ping.rb
|
92
|
+
- lib/solr/response/ruby.rb
|
93
|
+
- lib/solr/response/select.rb
|
94
|
+
- lib/solr/response/spellcheck.rb
|
95
|
+
- lib/solr/response/standard.rb
|
96
|
+
- lib/solr/response/xml.rb
|
97
|
+
- lib/solr/solrtasks.rb
|
98
|
+
- lib/solr/util.rb
|
99
|
+
- lib/solr/xml.rb
|
100
|
+
- solr/README.txt
|
101
|
+
- solr/etc/jetty.xml
|
102
|
+
- solr/etc/webdefault.xml
|
103
|
+
- solr/exampledocs/books.csv
|
104
|
+
- solr/exampledocs/hd.xml
|
105
|
+
- solr/exampledocs/ipod_other.xml
|
106
|
+
- solr/exampledocs/ipod_video.xml
|
107
|
+
- solr/exampledocs/locales.xml
|
108
|
+
- solr/exampledocs/mem.xml
|
109
|
+
- solr/exampledocs/monitor.xml
|
110
|
+
- solr/exampledocs/monitor2.xml
|
111
|
+
- solr/exampledocs/mp500.xml
|
112
|
+
- solr/exampledocs/post.jar
|
113
|
+
- solr/exampledocs/post.sh
|
114
|
+
- solr/exampledocs/sd500.xml
|
115
|
+
- solr/exampledocs/solr.xml
|
116
|
+
- solr/exampledocs/spellchecker.xml
|
117
|
+
- solr/exampledocs/test_utf8.sh
|
118
|
+
- solr/exampledocs/utf8-example.xml
|
119
|
+
- solr/exampledocs/vidcard.xml
|
120
|
+
- solr/lib/jetty-6.1.3.jar
|
121
|
+
- solr/lib/jetty-util-6.1.3.jar
|
122
|
+
- solr/lib/jsp-2.1/ant-1.6.5.jar
|
123
|
+
- solr/lib/jsp-2.1/core-3.1.1.jar
|
124
|
+
- solr/lib/jsp-2.1/jsp-2.1.jar
|
125
|
+
- solr/lib/jsp-2.1/jsp-api-2.1.jar
|
126
|
+
- solr/lib/servlet-api-2.5-6.1.3.jar
|
127
|
+
- solr/multicore/README.txt
|
128
|
+
- solr/multicore/core0/conf/schema.xml
|
129
|
+
- solr/multicore/core0/conf/solrconfig.xml
|
130
|
+
- solr/multicore/core1/conf/schema.xml
|
131
|
+
- solr/multicore/core1/conf/solrconfig.xml
|
132
|
+
- solr/multicore/exampledocs/ipod_other.xml
|
133
|
+
- solr/multicore/exampledocs/ipod_video.xml
|
134
|
+
- solr/multicore/solr.xml
|
135
|
+
- solr/solr/README.txt
|
136
|
+
- solr/solr/bin/abc
|
137
|
+
- solr/solr/bin/abo
|
138
|
+
- solr/solr/bin/backup
|
139
|
+
- solr/solr/bin/backupcleaner
|
140
|
+
- solr/solr/bin/commit
|
141
|
+
- solr/solr/bin/optimize
|
142
|
+
- solr/solr/bin/readercycle
|
143
|
+
- solr/solr/bin/rsyncd-disable
|
144
|
+
- solr/solr/bin/rsyncd-enable
|
145
|
+
- solr/solr/bin/rsyncd-start
|
146
|
+
- solr/solr/bin/rsyncd-stop
|
147
|
+
- solr/solr/bin/scripts-util
|
148
|
+
- solr/solr/bin/snapcleaner
|
149
|
+
- solr/solr/bin/snapinstaller
|
150
|
+
- solr/solr/bin/snappuller
|
151
|
+
- solr/solr/bin/snappuller-disable
|
152
|
+
- solr/solr/bin/snappuller-enable
|
153
|
+
- solr/solr/bin/snapshooter
|
154
|
+
- solr/solr/conf/admin-extra.html
|
155
|
+
- solr/solr/conf/elevate.xml
|
156
|
+
- solr/solr/conf/mapping-ISOLatin1Accent.txt
|
157
|
+
- solr/solr/conf/protwords.txt
|
158
|
+
- solr/solr/conf/schema.xml
|
159
|
+
- solr/solr/conf/scripts.conf
|
160
|
+
- solr/solr/conf/solrconfig.xml
|
161
|
+
- solr/solr/conf/spellings.txt
|
162
|
+
- solr/solr/conf/stopwords.txt
|
163
|
+
- solr/solr/conf/synonyms.txt
|
164
|
+
- solr/solr/conf/xslt/example.xsl
|
165
|
+
- solr/solr/conf/xslt/example_atom.xsl
|
166
|
+
- solr/solr/conf/xslt/example_rss.xsl
|
167
|
+
- solr/solr/conf/xslt/luke.xsl
|
168
|
+
- solr/solr/lib/localsolr.jar
|
169
|
+
- solr/solr/lib/lucene-spatial-2.9-dev.jar
|
170
|
+
- solr/start.jar
|
171
|
+
- solr/webapps/solr.war
|
172
|
+
- test/config/solr.yml
|
173
|
+
- test/db/connections/mysql/connection.rb
|
174
|
+
- test/db/connections/sqlite/connection.rb
|
175
|
+
- test/db/migrate/001_create_books.rb
|
176
|
+
- test/db/migrate/002_create_movies.rb
|
177
|
+
- test/db/migrate/003_create_categories.rb
|
178
|
+
- test/db/migrate/004_create_electronics.rb
|
179
|
+
- test/db/migrate/005_create_authors.rb
|
180
|
+
- test/db/migrate/006_create_postings.rb
|
181
|
+
- test/db/migrate/007_create_posts.rb
|
182
|
+
- test/db/migrate/008_create_gadgets.rb
|
183
|
+
- test/db/migrate/009_create_dynamic_attributes.rb
|
184
|
+
- test/db/migrate/010_create_advertises.rb
|
185
|
+
- test/db/migrate/011_create_locals.rb
|
186
|
+
- test/db/test.db
|
187
|
+
- test/fixtures/advertises.yml
|
188
|
+
- test/fixtures/authors.yml
|
189
|
+
- test/fixtures/books.yml
|
190
|
+
- test/fixtures/categories.yml
|
191
|
+
- test/fixtures/db_definitions/mysql.sql
|
192
|
+
- test/fixtures/dynamic_attributes.yml
|
193
|
+
- test/fixtures/electronics.yml
|
194
|
+
- test/fixtures/locals.yml
|
195
|
+
- test/fixtures/movies.yml
|
196
|
+
- test/fixtures/postings.yml
|
197
|
+
- test/functional/acts_as_solr_test.rb
|
198
|
+
- test/functional/association_indexing_test.rb
|
199
|
+
- test/functional/faceted_search_test.rb
|
200
|
+
- test/functional/multi_solr_search_test.rb
|
201
|
+
- test/models/advertise.rb
|
202
|
+
- test/models/author.rb
|
203
|
+
- test/models/book.rb
|
204
|
+
- test/models/category.rb
|
205
|
+
- test/models/dynamic_attribute.rb
|
206
|
+
- test/models/electronic.rb
|
207
|
+
- test/models/gadget.rb
|
208
|
+
- test/models/local.rb
|
209
|
+
- test/models/movie.rb
|
210
|
+
- test/models/novel.rb
|
211
|
+
- test/models/post.rb
|
212
|
+
- test/models/posting.rb
|
213
|
+
- test/test_helper.rb
|
214
|
+
- test/unit/acts_methods_shoulda.rb
|
215
|
+
- test/unit/class_methods_shoulda.rb
|
216
|
+
- test/unit/common_methods_shoulda.rb
|
217
|
+
- test/unit/instance_methods_shoulda.rb
|
218
|
+
- test/unit/lazy_document_shoulda.rb
|
219
|
+
- test/unit/parser_instance.rb
|
220
|
+
- test/unit/parser_methods_shoulda.rb
|
221
|
+
- test/unit/solr_instance.rb
|
222
|
+
- test/unit/test_helper.rb
|
223
|
+
has_rdoc: true
|
224
|
+
homepage: http://github.com/dcrec1/acts_as_solr_reloaded
|
225
|
+
licenses: []
|
226
|
+
|
227
|
+
post_install_message:
|
228
|
+
rdoc_options:
|
229
|
+
- --charset=UTF-8
|
230
|
+
require_paths:
|
231
|
+
- lib
|
232
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: "0"
|
237
|
+
version:
|
238
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
239
|
+
requirements:
|
240
|
+
- - ">="
|
241
|
+
- !ruby/object:Gem::Version
|
242
|
+
version: "0"
|
243
|
+
version:
|
244
|
+
requirements: []
|
245
|
+
|
246
|
+
rubyforge_project:
|
247
|
+
rubygems_version: 1.3.5
|
248
|
+
signing_key:
|
249
|
+
specification_version: 3
|
250
|
+
summary: This gem adds full text search capabilities and many other nifty features from Apache Solr to any Rails model.
|
251
|
+
test_files:
|
252
|
+
- test/db/connections/mysql/connection.rb
|
253
|
+
- test/db/connections/sqlite/connection.rb
|
254
|
+
- test/db/migrate/001_create_books.rb
|
255
|
+
- test/db/migrate/002_create_movies.rb
|
256
|
+
- test/db/migrate/003_create_categories.rb
|
257
|
+
- test/db/migrate/004_create_electronics.rb
|
258
|
+
- test/db/migrate/005_create_authors.rb
|
259
|
+
- test/db/migrate/006_create_postings.rb
|
260
|
+
- test/db/migrate/007_create_posts.rb
|
261
|
+
- test/db/migrate/008_create_gadgets.rb
|
262
|
+
- test/db/migrate/009_create_dynamic_attributes.rb
|
263
|
+
- test/db/migrate/010_create_advertises.rb
|
264
|
+
- test/db/migrate/011_create_locals.rb
|
265
|
+
- test/functional/acts_as_solr_test.rb
|
266
|
+
- test/functional/association_indexing_test.rb
|
267
|
+
- test/functional/faceted_search_test.rb
|
268
|
+
- test/functional/multi_solr_search_test.rb
|
269
|
+
- test/models/advertise.rb
|
270
|
+
- test/models/author.rb
|
271
|
+
- test/models/book.rb
|
272
|
+
- test/models/category.rb
|
273
|
+
- test/models/dynamic_attribute.rb
|
274
|
+
- test/models/electronic.rb
|
275
|
+
- test/models/gadget.rb
|
276
|
+
- test/models/local.rb
|
277
|
+
- test/models/movie.rb
|
278
|
+
- test/models/novel.rb
|
279
|
+
- test/models/post.rb
|
280
|
+
- test/models/posting.rb
|
281
|
+
- test/test_helper.rb
|
282
|
+
- test/unit/acts_methods_shoulda.rb
|
283
|
+
- test/unit/class_methods_shoulda.rb
|
284
|
+
- test/unit/common_methods_shoulda.rb
|
285
|
+
- test/unit/instance_methods_shoulda.rb
|
286
|
+
- test/unit/lazy_document_shoulda.rb
|
287
|
+
- test/unit/parser_instance.rb
|
288
|
+
- test/unit/parser_methods_shoulda.rb
|
289
|
+
- test/unit/solr_instance.rb
|
290
|
+
- test/unit/test_helper.rb
|