pduey-sunspot_rails 1.2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. data/.gitignore +5 -0
  2. data/.rspec +1 -0
  3. data/History.txt +54 -0
  4. data/LICENSE +18 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.rdoc +282 -0
  7. data/Rakefile +18 -0
  8. data/TESTING.md +35 -0
  9. data/TODO +8 -0
  10. data/VERSION.yml +4 -0
  11. data/dev_tasks/rdoc.rake +24 -0
  12. data/dev_tasks/release.rake +4 -0
  13. data/dev_tasks/spec.rake +27 -0
  14. data/dev_tasks/todo.rake +4 -0
  15. data/generators/sunspot/sunspot_generator.rb +9 -0
  16. data/generators/sunspot/templates/sunspot.yml +18 -0
  17. data/install.rb +1 -0
  18. data/lib/generators/sunspot_rails.rb +9 -0
  19. data/lib/generators/sunspot_rails/install/install_generator.rb +13 -0
  20. data/lib/generators/sunspot_rails/install/templates/config/sunspot.yml +17 -0
  21. data/lib/sunspot/rails.rb +63 -0
  22. data/lib/sunspot/rails/adapters.rb +83 -0
  23. data/lib/sunspot/rails/configuration.rb +323 -0
  24. data/lib/sunspot/rails/init.rb +5 -0
  25. data/lib/sunspot/rails/log_subscriber.rb +33 -0
  26. data/lib/sunspot/rails/railtie.rb +36 -0
  27. data/lib/sunspot/rails/railties/controller_runtime.rb +36 -0
  28. data/lib/sunspot/rails/request_lifecycle.rb +36 -0
  29. data/lib/sunspot/rails/searchable.rb +420 -0
  30. data/lib/sunspot/rails/server.rb +173 -0
  31. data/lib/sunspot/rails/solr_instrumentation.rb +20 -0
  32. data/lib/sunspot/rails/solr_logging.rb +62 -0
  33. data/lib/sunspot/rails/spec_helper.rb +26 -0
  34. data/lib/sunspot/rails/stub_session_proxy.rb +142 -0
  35. data/lib/sunspot/rails/tasks.rb +66 -0
  36. data/lib/sunspot_rails.rb +12 -0
  37. data/spec/configuration_spec.rb +173 -0
  38. data/spec/model_lifecycle_spec.rb +63 -0
  39. data/spec/model_spec.rb +478 -0
  40. data/spec/rails2/.gitignore +2 -0
  41. data/spec/rails2/Gemfile +15 -0
  42. data/spec/rails2/Rakefile +17 -0
  43. data/spec/rails2/app/controllers/application.rb +10 -0
  44. data/spec/rails2/app/controllers/application_controller.rb +10 -0
  45. data/spec/rails2/app/controllers/posts_controller.rb +6 -0
  46. data/spec/rails2/app/models/author.rb +8 -0
  47. data/spec/rails2/app/models/blog.rb +12 -0
  48. data/spec/rails2/app/models/location.rb +2 -0
  49. data/spec/rails2/app/models/photo_post.rb +2 -0
  50. data/spec/rails2/app/models/post.rb +11 -0
  51. data/spec/rails2/app/models/post_with_auto.rb +10 -0
  52. data/spec/rails2/app/models/post_with_conditional_index.rb +13 -0
  53. data/spec/rails2/app/models/post_with_default_scope.rb +11 -0
  54. data/spec/rails2/config/boot.rb +116 -0
  55. data/spec/rails2/config/database.yml +4 -0
  56. data/spec/rails2/config/environment.rb +41 -0
  57. data/spec/rails2/config/environments/development.rb +27 -0
  58. data/spec/rails2/config/environments/test.rb +27 -0
  59. data/spec/rails2/config/initializers/new_rails_defaults.rb +19 -0
  60. data/spec/rails2/config/initializers/session_store.rb +15 -0
  61. data/spec/rails2/config/preinitializer.rb +19 -0
  62. data/spec/rails2/config/routes.rb +43 -0
  63. data/spec/rails2/config/sunspot.yml +19 -0
  64. data/spec/rails2/db/schema.rb +27 -0
  65. data/spec/rails2/script/console +3 -0
  66. data/spec/rails3/.gitignore +4 -0
  67. data/spec/rails3/Gemfile +15 -0
  68. data/spec/rails3/README +281 -0
  69. data/spec/rails3/Rakefile +7 -0
  70. data/spec/rails3/app/controllers/application.rb +4 -0
  71. data/spec/rails3/app/controllers/application_controller.rb +4 -0
  72. data/spec/rails3/app/controllers/posts_controller.rb +6 -0
  73. data/spec/rails3/app/models/author.rb +8 -0
  74. data/spec/rails3/app/models/blog.rb +12 -0
  75. data/spec/rails3/app/models/location.rb +2 -0
  76. data/spec/rails3/app/models/photo_post.rb +2 -0
  77. data/spec/rails3/app/models/post.rb +11 -0
  78. data/spec/rails3/app/models/post_with_auto.rb +10 -0
  79. data/spec/rails3/app/models/post_with_conditional_index.rb +13 -0
  80. data/spec/rails3/app/models/post_with_default_scope.rb +11 -0
  81. data/spec/rails3/config.ru +4 -0
  82. data/spec/rails3/config/application.rb +46 -0
  83. data/spec/rails3/config/boot.rb +13 -0
  84. data/spec/rails3/config/database.yml +22 -0
  85. data/spec/rails3/config/environment.rb +5 -0
  86. data/spec/rails3/config/environments/development.rb +19 -0
  87. data/spec/rails3/config/environments/test.rb +19 -0
  88. data/spec/rails3/config/initializers/backtrace_silencers.rb +7 -0
  89. data/spec/rails3/config/initializers/inflections.rb +10 -0
  90. data/spec/rails3/config/initializers/mime_types.rb +5 -0
  91. data/spec/rails3/config/initializers/new_rails_defaults.rb +19 -0
  92. data/spec/rails3/config/initializers/secret_token.rb +7 -0
  93. data/spec/rails3/config/initializers/session_store.rb +8 -0
  94. data/spec/rails3/config/locales/en.yml +5 -0
  95. data/spec/rails3/config/routes.rb +59 -0
  96. data/spec/rails3/config/sunspot.yml +19 -0
  97. data/spec/rails3/db/schema.rb +27 -0
  98. data/spec/rails3/script/console +3 -0
  99. data/spec/rails3/script/rails +6 -0
  100. data/spec/rails3/solr/.gitignore +1 -0
  101. data/spec/rails3/solr/conf/elevate.xml +36 -0
  102. data/spec/rails3/solr/conf/schema.xml +238 -0
  103. data/spec/rails3/solr/conf/solrconfig.xml +938 -0
  104. data/spec/rails3/solr/conf/spellings.txt +2 -0
  105. data/spec/rails3/solr/conf/stopwords.txt +58 -0
  106. data/spec/rails3/solr/conf/synonyms.txt +31 -0
  107. data/spec/rails3/solr/lib/lucene-spatial-2.9.1.jar +0 -0
  108. data/spec/rails3/solr/lib/solr-spatial-light-0.0.6.jar +0 -0
  109. data/spec/request_lifecycle_spec.rb +61 -0
  110. data/spec/schema.rb +27 -0
  111. data/spec/server_spec.rb +37 -0
  112. data/spec/session_spec.rb +24 -0
  113. data/spec/spec_helper.rb +46 -0
  114. data/spec/stub_session_proxy_spec.rb +122 -0
  115. data/sunspot_rails.gemspec +44 -0
  116. metadata +322 -0
@@ -0,0 +1,5 @@
1
+ sunspot-solr.pid
2
+ doc
3
+ pkg/*
4
+ log
5
+ .bundle
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1,54 @@
1
+ == 1.2.1 2010-12-28
2
+ * Decreased default reindexing batch size from 500 to 50
3
+
4
+ == 1.2.0 2010-12-28
5
+ * Compatible with both Rails 2 and Rails 3
6
+ * Configure Sunspot with a SOLR_URL or WEBSOLR_URL environment variable, also
7
+ provide a default port based on Rails.env.
8
+ * Fix the 'Anonymous modules' ArgumentError for Ruby 1.9.2 and Rails 2.3
9
+ * Fix SQL's ambiguous ID issue when tables are joined
10
+
11
+ == 1.1.0 2010-04-01
12
+ * Added include option to searchable options to allow definition of eager
13
+ loading associations when indexing
14
+
15
+ == 1.0.4 2010-03-19
16
+ * Fix StubSessionProxy to match new internal API
17
+
18
+ == 1.0.2 2010-03-11
19
+ * Allow use of ActiveRecord object for coordinates extraction
20
+ * Works with non-standard primary keys
21
+ * Add :include, :select options to Searchable::search()
22
+ * Allow specification of min_memory and max_memory in config/sunspot.yml
23
+ * Searchable now more considerate of model namespaces
24
+
25
+ == 1.0.1 2010-03-05
26
+ * Fix Solr logging compatibility with RSolr 0.12.1
27
+
28
+ == 1.0.0 2010-03-03
29
+ * Sunspot::Rails::Server subclasses Sunspot::Server; no longer needs to shell out
30
+ * Use Sunspot built-in session proxies in Sunspot::Rails
31
+ * Sunspot::Rails adapter compatible with assumed inconsistency
32
+ * Use session proxy for disconnecting Sunspot in specs
33
+ * Allow specification of first ID for reindex batches.
34
+ * Log Solr requests in Rails logger
35
+ * Use class_inheritable_hash for sunspot_options
36
+ * Add `index` class method, which is like `reindex` but doesn't clear first
37
+ * Rename sunspot:solr:reindex to sunspot:reindex
38
+ * Use Sunspot::Installer to bootstrap Rails Solr home
39
+
40
+ == 0.10.7
41
+ * Added Sunspot::Rails::Server class to start/stop/run/bootstrap the solr server
42
+ * Added log_level key to sunspot.yml, see java docs for valid values (http://java.sun.com/j2se/1.5.0/docs/api/java/util/logging/Level.html)
43
+ * Added log_file key to sunspot.yml. This defaults to RAILS_ROOT/log/solr_<environment>.log.
44
+ * Added support for localsolr in sunspot_rails. You can add custom extension.jar files to your Rails.root/solr/lib directory
45
+ * Added an option to not reindex an object when certain columns have changed.
46
+
47
+ == 0.10.6
48
+ * Added script/generate sunspot support to generate the required sunspot.yml
49
+ file [Brandon Keepers]
50
+
51
+ == 0.10.5
52
+ * Added a auto_commit_after_request option to sunspot.yml. Sunspot will not
53
+ automatically commit any changes in solr if you set this value to false.
54
+ Strongly encouraged for production environment.
data/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Permission is hereby granted, free of charge, to any person obtaining
2
+ a copy of this software and associated documentation files (the
3
+ 'Software'), to deal in the Software without restriction, including
4
+ without limitation the rights to use, copy, modify, merge, publish,
5
+ distribute, sublicense, and/or sell copies of the Software, and to
6
+ permit persons to whom the Software is furnished to do so, subject to
7
+ the following conditions:
8
+
9
+ The above copyright notice and this permission notice shall be
10
+ included in all copies or substantial portions of the Software.
11
+
12
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
13
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
15
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
16
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
17
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
18
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Mat Brown
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,282 @@
1
+ = Sunspot::Rails
2
+
3
+ Sunspot::Rails is a Rails plugin that provides drop-in integration of the
4
+ Sunspot[http://outoftime.github.com/sunspot] Solr search library with Rails. It
5
+ provides the following features:
6
+
7
+ * Configure Sunspot using config/sunspot.yml
8
+ * Extend ActiveRecord for easy index configuration, search, and indexing
9
+ * Automatically index ActiveRecord objects when they are saved, and remove them
10
+ from the index when they are destroyed (can be disabled)
11
+ * Automatically commit Solr changes at the end of each request (can be disabled)
12
+ * Provide utility methods to find and fix orphaned documents and rebuild the
13
+ Solr index for a given class
14
+ * Provide rake tasks for starting and stopping the development Solr instance,
15
+ using the configuration in sunspot.yml
16
+
17
+ Sunspot::Rails has been tested with Rails versions 2.3 and 3.0
18
+
19
+ == Installation in Rails 3
20
+
21
+ In your <code>Gemfile</code>:
22
+
23
+ gem 'sunspot_rails'
24
+ # This is an optional packaged Solr:
25
+ group :test, :development do
26
+ gem 'sunspot_solr'
27
+ end
28
+
29
+ == Installation in Rails 2
30
+
31
+ In your project's <code>config/environment.rb</code>, add the following gem dependencies:
32
+
33
+ config.gem 'sunspot'
34
+ config.gem 'sunspot_rails'
35
+
36
+ And in your project's <code>config/development.rb</code> and <code>config/test.rb</code>,
37
+ add the following gem dependency to install the optional packaged Solr:
38
+
39
+ config.gem 'sunspot_solr'
40
+
41
+ Install the gems with:
42
+
43
+ rake gems:install
44
+
45
+ Generate the file <code>config/sunspot.yml</code>:
46
+
47
+ script/generate sunspot
48
+
49
+ Rails doesn't automatically load rake tasks from plugins installed as gems
50
+ (https://rails.lighthouseapp.com/projects/8994/tickets/59). If you installed
51
+ Sunspot::Rails as a gem, add the following line to your project's Rakefile:
52
+
53
+ require 'sunspot/rails/tasks'
54
+
55
+ == Using Sunspot::Rails
56
+
57
+ If you wish to make modifications to the Solr schema, you can create a custom
58
+ Solr home in your project directory. In order to do so, create the directory
59
+ <code>RAILS_ROOT/solr/conf</code>, and copy in the contents of the Solr gem's
60
+ <code>solr/solr/conf</code> directory. If the files are in the right place,
61
+ Sunspot::Rails will detect them and tell Solr to use your local configurations.
62
+ Use caution when modifying <code>schema.xml</code> - Sunspot relies on the
63
+ field naming scheme in the packaged schema file.
64
+
65
+ To start up a Solr instance, issue the following (requires sunspot_solr to be
66
+ installed):
67
+
68
+ rake sunspot:solr:start
69
+
70
+ Note that using the built-in Solr instance packaged with Sunspot is great for
71
+ development, but is not recommended for production. See the Sunspot
72
+ documentation for more information.
73
+
74
+ == Usage
75
+
76
+ === Setup
77
+
78
+ In order for an ActiveRecord model to be indexable and searchable, it must be
79
+ configured for search. For example:
80
+
81
+ class Post < ActiveRecord::Base
82
+ searchable do
83
+ text :title, :body
84
+ integer :blog_id
85
+ time :updated_at
86
+ string :sort_title do
87
+ title.downcase.sub(/^(an?|the) /, '')
88
+ end
89
+ end
90
+ end
91
+
92
+ See the documentation for Sunspot.setup for full details on what can go in the
93
+ configuration block.
94
+
95
+ === Indexing
96
+
97
+ By default, models are indexed whenever they are saved, and removed from the
98
+ index whenever they are destroyed. This behavior can be disabled:
99
+
100
+ class Post < ActiveRecord::Base
101
+ searchable :auto_index => false, :auto_remove => false do
102
+ # setup...
103
+ end
104
+ end
105
+
106
+ Note that <b>using the <code>:auto_remove</code> option is not recommended
107
+ </b>, as destroying an object without removing it from the index will
108
+ create an orphaned document in the index, which is a Bad Thing. Turning off
109
+ <code>:auto_index</code> is perfectly safe if you prefer to manage indexing manually
110
+ (perhaps using a background job).
111
+
112
+ If you have disabled lifecycle indexing hooks, you can invoke indexing
113
+ operations directly on your model:
114
+
115
+ post = Post.create
116
+ post.index
117
+ post.remove_from_index
118
+
119
+ It is possible to index conditionally on the instance level by
120
+ using the <code>:if</code> option. If the provided method evaluates to
121
+ <code>false</code> then this specific instance will not be indexed.
122
+
123
+ class Post < ActiveRecord::Base
124
+ searchable :if => :title_is_present do
125
+ # setup
126
+ end
127
+
128
+ def title_is_present
129
+ title.present?
130
+ end
131
+ end
132
+
133
+ === Committing
134
+
135
+ When data is changed in Solr, it is initially stored in memory and not made
136
+ available to the currently running searcher instance. Issuing a +commit+ to Solr
137
+ will cause it to write the changes to disk, and instantiate a new searcher
138
+ instance. This operation is fairly expensive, so rather than issuing a commit
139
+ every time a document is added or removed, Sunspot::Rails issues a commit at
140
+ the end of any request where data has been added to or removed from Solr. If
141
+ you need to immediately issue a commit, bang!-versions of the methods are
142
+ available:
143
+
144
+ post = Post.create
145
+ post.index!
146
+ # this is the same as...
147
+ post.index
148
+ Sunspot.commit
149
+
150
+ When writing tests outside of the context of a controller request, you will want
151
+ to use one of these two approaches.
152
+
153
+ === Searching
154
+
155
+ Do it like this:
156
+
157
+ Post.search do
158
+ with :blog_id, 1
159
+ with(:updated_at).greater_than(Time.now - 2.weeks)
160
+ order :sort_title, :asc
161
+ paginate :page => 1, :per_page => 15
162
+ end
163
+
164
+ See the documentation for <code>Sunspot.search</code> for all the options
165
+ available in the search block, and the information available in the result
166
+ block.
167
+
168
+ === Searching for IDs
169
+
170
+ In some situations, you may want to get the IDs for models returned by a search
171
+ without actually loading the models out of the database. For that, you can
172
+ call +search_ids+, using the same block format as #search. This will return an
173
+ array of IDs.
174
+
175
+
176
+ === Searching for multiple types
177
+
178
+ Sunspot is entirely agnostic about whether searches are for one or more types;
179
+ the only restriction is that columns used for restriction, ordering, etc. are
180
+ defined in the same way for all types being searched. Sunspot::Rails does not
181
+ provide any additional support for this, since there is not anything useful to
182
+ be added, so just use the interface provided by Sunspot:
183
+
184
+ Sunspot.search(Post, Comment) do
185
+ with :blog_id, 1
186
+ order :created_at, :asc
187
+ end
188
+
189
+ Be sure to check out the Sunspot documentation for all the details.
190
+
191
+ === Adding search functionality in mixins
192
+
193
+ Sunspot does not require that search setup for a given class happen all in one
194
+ place; it is perfectly acceptable to call the <code>Sunspot.setup</code> method
195
+ more than once. This capability is particularly useful for adding search
196
+ functionality in mixins. For instance, if you have a +Ratable+ module, you may
197
+ wish to add additional search fields for searchable classes that mix in that
198
+ module. For example:
199
+
200
+ module Ratable
201
+ def self.included(base)
202
+ if base.searchable?
203
+ base.searchable do
204
+ float :average_rating do
205
+ ratings.average(:value)
206
+ end
207
+ end
208
+ end
209
+ end
210
+ end
211
+
212
+ Note the use of <code>base.searchable?</code> - this ensures that only classes
213
+ that already have search enabled will have the additional configuration added.
214
+ The above pattern requires that the class be declared searchable before the
215
+ module is mixed in; other patterns (such as passing a :searchable option to an
216
+ acts_as_-style declaration) may be more flexible.
217
+
218
+ === Utility methods
219
+
220
+ If you need to completely reindex all of the instances of a given model class,
221
+ you can issue:
222
+
223
+ Post.reindex
224
+
225
+ If for some reason models get deleted from the database, but not from the index,
226
+ they will become index orphans - not a good situation. To get IDs that exist in
227
+ the index but not the database, you can use the +index_orphans+ method; to
228
+ remove those documents from the index, use +clean_index_orphans+. Note that
229
+ neither of these operations should be needed if Sunspot and Sunspot::Rails are
230
+ used as intended.
231
+
232
+
233
+ == Testing Solr integration using RSpec
234
+
235
+ To disable the sunspot-solr integration for your active record models, require
236
+ the file `sunspot/rails/spec_helper`
237
+
238
+ Then, in your spec, use the #disconnect_sunspot method:
239
+
240
+ require 'sunspot/rails/spec_helper'
241
+
242
+ describe Post do
243
+ disconnect_sunspot
244
+
245
+ it 'should have some behavior'
246
+ # ...
247
+ end
248
+ end
249
+
250
+ In all of the examples in this group, all Sunspot calls will be stubbed out. The
251
+ Sunspot#search method will return a stub search object that mimics a search with
252
+ no results.
253
+
254
+ == Further Reading
255
+
256
+ Reading the {Sunspot documentation}[http://outoftime.github.com/sunspot/docs] is
257
+ highly recommended. Sunspot::Rails exists to wrap Sunspot with a Rails-friendly
258
+ API, but almost all of the functionality you use in Sunspot::Rails is
259
+ implemented in Sunspot.
260
+
261
+ Posts about Sunspot on my blog are available at http://outofti.me/tagged/sunspot
262
+
263
+ == Bugs
264
+
265
+ Please submit bug reports to
266
+ http://outoftime.lighthouseapp.com/projects/20339-sunspot
267
+
268
+ == Contributors
269
+
270
+ - Mat Brown (mat@patch.com)
271
+ - Peer Allan (peer.allan@gmail.com)
272
+ - Michael Moen (michael@underpantsgnome.com)
273
+ - Benjamin Krause (bk@benjaminkrause.com)
274
+ - Adam Salter (adam@codebright.net)
275
+ - Brandon Keepers (brandon@opensoul.org)
276
+ - Paul Canavese (paul@canavese.org)
277
+ - John Eberly (jeberly@elctech.com)
278
+ - Gert Thiel (gertthiel@gmail.com)
279
+
280
+ == License
281
+
282
+ Sunspot::Rails is distributed under the MIT License, copyright (c) 2009 Mat Brown
@@ -0,0 +1,18 @@
1
+ require 'rake'
2
+ require 'rake/rdoctask'
3
+
4
+ if File.exist?(sunspot_lib = File.expand_path(File.join(File.dirname(__FILE__), '..', 'sunspot', 'lib')))
5
+ STDERR.puts("Using sunspot lib at #{sunspot_lib}")
6
+ $: << sunspot_lib
7
+ end
8
+
9
+ task :environment do
10
+ if ENV['SUNSPOT_LIB']
11
+ $: << ENV['SUNSPOT_LIB']
12
+ end
13
+ ENV['RAILS_ROOT'] ||= File.join(File.dirname(__FILE__), 'spec', 'rails3')
14
+ ENV['RAILS_ENV'] ||= 'test'
15
+ require File.expand_path(File.join(ENV['RAILS_ROOT'], 'config', 'environment.rb'))
16
+ end
17
+
18
+ FileList['dev_tasks/*.rake', 'lib/sunspot/rails/tasks.rb'].each { |file| load(file) }
@@ -0,0 +1,35 @@
1
+ # Testing `sunspot_rails`
2
+
3
+ Note: All the paths mentioned in here are relative to the current directory, or `sunspot/sunspot_rails`.
4
+
5
+ The `sunspot_rails` gem is tested with RSpec, and its spec suite is located in `spec`.
6
+
7
+ These specs are to be run against up to date Rails 2 and Rails 3 applications, included at `spec/rails2` and `spec/rails3`, respectively. The `spec_helper.rb` file loads the environment for these applications based on the `RAILS_ROOT` provided when invoking tests, outlined below.
8
+
9
+ ## Start Solr
10
+
11
+ Specs expect to connect to Solr on `http://localhost:8980/solr`
12
+
13
+ rake sunspot:solr:start
14
+
15
+ ## Install dependencies
16
+
17
+ Each application uses Bundler to manage its dependencies. The `Gemfile` also installs the `sunspot` and `sunspot_rails` gems from your copies checked out locally. Because Bundler expands the full path to `sunspot` and `sunspot_rails`, we're excluding its generated `Gemfile.lock` file from version control.
18
+
19
+ pushd spec/rails2
20
+ bundle install
21
+ cd ../rails3
22
+ bundle install
23
+ popd
24
+
25
+ ## Invoke specs
26
+
27
+ The project contains wrapper scripts that set up the environment to run the
28
+ specs under Rails 2 and Rails 3 respectively:
29
+
30
+ rake spec:rails2
31
+ rake spec:rails3
32
+
33
+ Or you can run them both:
34
+
35
+ rake spec
data/TODO ADDED
@@ -0,0 +1,8 @@
1
+ * Delegate new_search method
2
+ =======
3
+ * Fix final status output for reindex
4
+ * Add batch-per-request option
5
+ * Optionally yield from reindex
6
+ * Access to all searchable classes
7
+ * Add a method to disable sunspot updates for certain values, e.g.
8
+ if you just touch a record, sunspot shouldn't index the