sunspot_solr 2.0.0.pre.120720 → 2.0.0.pre.120924
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +11 -0
- data/.travis.yml +35 -0
- data/README.md +863 -0
- data/Rakefile +37 -0
- data/ci/travis.sh +67 -0
- data/sunspot/.gitignore +13 -0
- data/sunspot/Gemfile +5 -0
- data/sunspot/History.txt +258 -0
- data/sunspot/LICENSE +18 -0
- data/sunspot/Rakefile +13 -0
- data/sunspot/TODO +13 -0
- data/sunspot/lib/light_config.rb +40 -0
- data/sunspot/lib/sunspot.rb +579 -0
- data/sunspot/lib/sunspot/adapters.rb +349 -0
- data/sunspot/lib/sunspot/batcher.rb +62 -0
- data/sunspot/lib/sunspot/class_set.rb +23 -0
- data/sunspot/lib/sunspot/composite_setup.rb +202 -0
- data/sunspot/lib/sunspot/configuration.rb +53 -0
- data/sunspot/lib/sunspot/data_extractor.rb +50 -0
- data/sunspot/lib/sunspot/dsl.rb +5 -0
- data/sunspot/lib/sunspot/dsl/adjustable.rb +47 -0
- data/sunspot/lib/sunspot/dsl/field_group.rb +57 -0
- data/sunspot/lib/sunspot/dsl/field_query.rb +345 -0
- data/sunspot/lib/sunspot/dsl/fields.rb +103 -0
- data/sunspot/lib/sunspot/dsl/fulltext.rb +243 -0
- data/sunspot/lib/sunspot/dsl/function.rb +27 -0
- data/sunspot/lib/sunspot/dsl/functional.rb +44 -0
- data/sunspot/lib/sunspot/dsl/more_like_this_query.rb +56 -0
- data/sunspot/lib/sunspot/dsl/paginatable.rb +32 -0
- data/sunspot/lib/sunspot/dsl/query_facet.rb +36 -0
- data/sunspot/lib/sunspot/dsl/restriction.rb +25 -0
- data/sunspot/lib/sunspot/dsl/restriction_with_near.rb +160 -0
- data/sunspot/lib/sunspot/dsl/scope.rb +214 -0
- data/sunspot/lib/sunspot/dsl/search.rb +30 -0
- data/sunspot/lib/sunspot/dsl/standard_query.rb +122 -0
- data/sunspot/lib/sunspot/field.rb +193 -0
- data/sunspot/lib/sunspot/field_factory.rb +129 -0
- data/sunspot/lib/sunspot/indexer.rb +136 -0
- data/sunspot/lib/sunspot/query.rb +11 -0
- data/sunspot/lib/sunspot/query/abstract_field_facet.rb +55 -0
- data/sunspot/lib/sunspot/query/bbox.rb +15 -0
- data/sunspot/lib/sunspot/query/boost_query.rb +24 -0
- data/sunspot/lib/sunspot/query/common_query.rb +96 -0
- data/sunspot/lib/sunspot/query/composite_fulltext.rb +36 -0
- data/sunspot/lib/sunspot/query/connective.rb +206 -0
- data/sunspot/lib/sunspot/query/date_field_facet.rb +14 -0
- data/sunspot/lib/sunspot/query/dismax.rb +132 -0
- data/sunspot/lib/sunspot/query/field_facet.rb +41 -0
- data/sunspot/lib/sunspot/query/field_group.rb +37 -0
- data/sunspot/lib/sunspot/query/filter.rb +38 -0
- data/sunspot/lib/sunspot/query/function_query.rb +52 -0
- data/sunspot/lib/sunspot/query/geo.rb +53 -0
- data/sunspot/lib/sunspot/query/geofilt.rb +16 -0
- data/sunspot/lib/sunspot/query/highlighting.rb +62 -0
- data/sunspot/lib/sunspot/query/more_like_this.rb +61 -0
- data/sunspot/lib/sunspot/query/more_like_this_query.rb +12 -0
- data/sunspot/lib/sunspot/query/pagination.rb +42 -0
- data/sunspot/lib/sunspot/query/query_facet.rb +53 -0
- data/sunspot/lib/sunspot/query/range_facet.rb +15 -0
- data/sunspot/lib/sunspot/query/restriction.rb +308 -0
- data/sunspot/lib/sunspot/query/scope.rb +9 -0
- data/sunspot/lib/sunspot/query/sort.rb +109 -0
- data/sunspot/lib/sunspot/query/sort_composite.rb +34 -0
- data/sunspot/lib/sunspot/query/standard_query.rb +16 -0
- data/sunspot/lib/sunspot/query/text_field_boost.rb +17 -0
- data/sunspot/lib/sunspot/schema.rb +151 -0
- data/sunspot/lib/sunspot/search.rb +9 -0
- data/sunspot/lib/sunspot/search/abstract_search.rb +286 -0
- data/sunspot/lib/sunspot/search/date_facet.rb +35 -0
- data/sunspot/lib/sunspot/search/facet_row.rb +27 -0
- data/sunspot/lib/sunspot/search/field_facet.rb +88 -0
- data/sunspot/lib/sunspot/search/field_group.rb +70 -0
- data/sunspot/lib/sunspot/search/group.rb +54 -0
- data/sunspot/lib/sunspot/search/highlight.rb +38 -0
- data/sunspot/lib/sunspot/search/hit.rb +150 -0
- data/sunspot/lib/sunspot/search/hit_enumerable.rb +68 -0
- data/sunspot/lib/sunspot/search/more_like_this_search.rb +31 -0
- data/sunspot/lib/sunspot/search/paginated_collection.rb +57 -0
- data/sunspot/lib/sunspot/search/query_facet.rb +67 -0
- data/sunspot/lib/sunspot/search/range_facet.rb +37 -0
- data/sunspot/lib/sunspot/search/standard_search.rb +21 -0
- data/sunspot/lib/sunspot/session.rb +262 -0
- data/sunspot/lib/sunspot/session_proxy.rb +95 -0
- data/sunspot/lib/sunspot/session_proxy/abstract_session_proxy.rb +29 -0
- data/sunspot/lib/sunspot/session_proxy/class_sharding_session_proxy.rb +66 -0
- data/sunspot/lib/sunspot/session_proxy/id_sharding_session_proxy.rb +89 -0
- data/sunspot/lib/sunspot/session_proxy/master_slave_session_proxy.rb +43 -0
- data/sunspot/lib/sunspot/session_proxy/retry_5xx_session_proxy.rb +67 -0
- data/sunspot/lib/sunspot/session_proxy/sharding_session_proxy.rb +222 -0
- data/sunspot/lib/sunspot/session_proxy/silent_fail_session_proxy.rb +42 -0
- data/sunspot/lib/sunspot/session_proxy/thread_local_session_proxy.rb +37 -0
- data/sunspot/lib/sunspot/setup.rb +350 -0
- data/sunspot/lib/sunspot/text_field_setup.rb +29 -0
- data/sunspot/lib/sunspot/type.rb +393 -0
- data/sunspot/lib/sunspot/util.rb +252 -0
- data/sunspot/lib/sunspot/version.rb +3 -0
- data/sunspot/script/console +10 -0
- data/sunspot/spec/api/adapters_spec.rb +68 -0
- data/sunspot/spec/api/batcher_spec.rb +112 -0
- data/sunspot/spec/api/binding_spec.rb +50 -0
- data/sunspot/spec/api/class_set_spec.rb +24 -0
- data/sunspot/spec/api/hit_enumerable_spec.rb +47 -0
- data/sunspot/spec/api/indexer/attributes_spec.rb +149 -0
- data/sunspot/spec/api/indexer/batch_spec.rb +72 -0
- data/sunspot/spec/api/indexer/dynamic_fields_spec.rb +42 -0
- data/sunspot/spec/api/indexer/fixed_fields_spec.rb +57 -0
- data/sunspot/spec/api/indexer/fulltext_spec.rb +43 -0
- data/sunspot/spec/api/indexer/removal_spec.rb +53 -0
- data/sunspot/spec/api/indexer/spec_helper.rb +1 -0
- data/sunspot/spec/api/indexer_spec.rb +14 -0
- data/sunspot/spec/api/query/advanced_manipulation_examples.rb +35 -0
- data/sunspot/spec/api/query/connectives_examples.rb +201 -0
- data/sunspot/spec/api/query/dsl_spec.rb +18 -0
- data/sunspot/spec/api/query/dynamic_fields_examples.rb +165 -0
- data/sunspot/spec/api/query/faceting_examples.rb +497 -0
- data/sunspot/spec/api/query/fulltext_examples.rb +313 -0
- data/sunspot/spec/api/query/function_spec.rb +79 -0
- data/sunspot/spec/api/query/geo_examples.rb +68 -0
- data/sunspot/spec/api/query/group_spec.rb +32 -0
- data/sunspot/spec/api/query/highlighting_examples.rb +245 -0
- data/sunspot/spec/api/query/more_like_this_spec.rb +140 -0
- data/sunspot/spec/api/query/ordering_pagination_examples.rb +116 -0
- data/sunspot/spec/api/query/scope_examples.rb +275 -0
- data/sunspot/spec/api/query/spatial_examples.rb +27 -0
- data/sunspot/spec/api/query/spec_helper.rb +1 -0
- data/sunspot/spec/api/query/standard_spec.rb +29 -0
- data/sunspot/spec/api/query/text_field_scoping_examples.rb +30 -0
- data/sunspot/spec/api/query/types_spec.rb +20 -0
- data/sunspot/spec/api/search/dynamic_fields_spec.rb +33 -0
- data/sunspot/spec/api/search/faceting_spec.rb +360 -0
- data/sunspot/spec/api/search/highlighting_spec.rb +69 -0
- data/sunspot/spec/api/search/hits_spec.rb +147 -0
- data/sunspot/spec/api/search/paginated_collection_spec.rb +36 -0
- data/sunspot/spec/api/search/results_spec.rb +72 -0
- data/sunspot/spec/api/search/search_spec.rb +23 -0
- data/sunspot/spec/api/search/spec_helper.rb +1 -0
- data/sunspot/spec/api/session_proxy/class_sharding_session_proxy_spec.rb +85 -0
- data/sunspot/spec/api/session_proxy/id_sharding_session_proxy_spec.rb +30 -0
- data/sunspot/spec/api/session_proxy/master_slave_session_proxy_spec.rb +41 -0
- data/sunspot/spec/api/session_proxy/retry_5xx_session_proxy_spec.rb +78 -0
- data/sunspot/spec/api/session_proxy/sharding_session_proxy_spec.rb +77 -0
- data/sunspot/spec/api/session_proxy/silent_fail_session_proxy_spec.rb +24 -0
- data/sunspot/spec/api/session_proxy/spec_helper.rb +9 -0
- data/sunspot/spec/api/session_proxy/thread_local_session_proxy_spec.rb +39 -0
- data/sunspot/spec/api/session_spec.rb +232 -0
- data/sunspot/spec/api/spec_helper.rb +3 -0
- data/sunspot/spec/api/sunspot_spec.rb +29 -0
- data/sunspot/spec/ext.rb +11 -0
- data/sunspot/spec/helpers/indexer_helper.rb +17 -0
- data/sunspot/spec/helpers/integration_helper.rb +8 -0
- data/sunspot/spec/helpers/mock_session_helper.rb +13 -0
- data/sunspot/spec/helpers/query_helper.rb +26 -0
- data/sunspot/spec/helpers/search_helper.rb +68 -0
- data/sunspot/spec/integration/dynamic_fields_spec.rb +57 -0
- data/sunspot/spec/integration/faceting_spec.rb +330 -0
- data/sunspot/spec/integration/field_grouping_spec.rb +100 -0
- data/sunspot/spec/integration/geospatial_spec.rb +96 -0
- data/sunspot/spec/integration/highlighting_spec.rb +44 -0
- data/sunspot/spec/integration/indexing_spec.rb +55 -0
- data/sunspot/spec/integration/keyword_search_spec.rb +317 -0
- data/sunspot/spec/integration/local_search_spec.rb +64 -0
- data/sunspot/spec/integration/more_like_this_spec.rb +43 -0
- data/sunspot/spec/integration/scoped_search_spec.rb +386 -0
- data/sunspot/spec/integration/stored_fields_spec.rb +12 -0
- data/sunspot/spec/integration/test_pagination.rb +43 -0
- data/sunspot/spec/integration/unicode_spec.rb +15 -0
- data/sunspot/spec/mocks/adapters.rb +33 -0
- data/sunspot/spec/mocks/blog.rb +3 -0
- data/sunspot/spec/mocks/comment.rb +21 -0
- data/sunspot/spec/mocks/connection.rb +126 -0
- data/sunspot/spec/mocks/mock_adapter.rb +30 -0
- data/sunspot/spec/mocks/mock_class_sharding_session_proxy.rb +24 -0
- data/sunspot/spec/mocks/mock_record.rb +52 -0
- data/sunspot/spec/mocks/mock_sharding_session_proxy.rb +15 -0
- data/sunspot/spec/mocks/photo.rb +11 -0
- data/sunspot/spec/mocks/post.rb +86 -0
- data/sunspot/spec/mocks/super_class.rb +2 -0
- data/sunspot/spec/mocks/user.rb +13 -0
- data/sunspot/spec/spec_helper.rb +40 -0
- data/sunspot/sunspot.gemspec +37 -0
- data/sunspot/tasks/rdoc.rake +27 -0
- data/sunspot/tasks/schema.rake +19 -0
- data/sunspot/tasks/todo.rake +4 -0
- data/sunspot_rails/.gitignore +7 -0
- data/sunspot_rails/.rspec +1 -0
- data/sunspot_rails/History.txt +74 -0
- data/sunspot_rails/LICENSE +18 -0
- data/sunspot_rails/MIT-LICENSE +20 -0
- data/sunspot_rails/README.rdoc +265 -0
- data/sunspot_rails/Rakefile +17 -0
- data/sunspot_rails/TODO +8 -0
- data/sunspot_rails/dev_tasks/rdoc.rake +24 -0
- data/sunspot_rails/dev_tasks/release.rake +4 -0
- data/sunspot_rails/dev_tasks/spec.rake +107 -0
- data/sunspot_rails/dev_tasks/todo.rake +4 -0
- data/sunspot_rails/gemfiles/rails-2.3.14 +12 -0
- data/sunspot_rails/gemfiles/rails-3.0.15 +12 -0
- data/sunspot_rails/gemfiles/rails-3.1.6 +12 -0
- data/sunspot_rails/gemfiles/rails-3.2.6 +12 -0
- data/sunspot_rails/generators/sunspot/sunspot_generator.rb +9 -0
- data/sunspot_rails/generators/sunspot/templates/sunspot.yml +20 -0
- data/sunspot_rails/install.rb +1 -0
- data/sunspot_rails/lib/generators/sunspot_rails.rb +9 -0
- data/sunspot_rails/lib/generators/sunspot_rails/install/install_generator.rb +13 -0
- data/sunspot_rails/lib/generators/sunspot_rails/install/templates/config/sunspot.yml +19 -0
- data/sunspot_rails/lib/sunspot/rails.rb +69 -0
- data/sunspot_rails/lib/sunspot/rails/adapters.rb +88 -0
- data/sunspot_rails/lib/sunspot/rails/configuration.rb +352 -0
- data/sunspot_rails/lib/sunspot/rails/init.rb +5 -0
- data/sunspot_rails/lib/sunspot/rails/log_subscriber.rb +45 -0
- data/sunspot_rails/lib/sunspot/rails/railtie.rb +41 -0
- data/sunspot_rails/lib/sunspot/rails/railties/controller_runtime.rb +36 -0
- data/sunspot_rails/lib/sunspot/rails/request_lifecycle.rb +36 -0
- data/sunspot_rails/lib/sunspot/rails/searchable.rb +495 -0
- data/sunspot_rails/lib/sunspot/rails/server.rb +106 -0
- data/sunspot_rails/lib/sunspot/rails/solr_instrumentation.rb +19 -0
- data/sunspot_rails/lib/sunspot/rails/solr_logging.rb +62 -0
- data/sunspot_rails/lib/sunspot/rails/spec_helper.rb +26 -0
- data/sunspot_rails/lib/sunspot/rails/stub_session_proxy.rb +146 -0
- data/sunspot_rails/lib/sunspot/rails/tasks.rb +94 -0
- data/sunspot_rails/lib/sunspot_rails.rb +12 -0
- data/sunspot_rails/spec/configuration_spec.rb +209 -0
- data/sunspot_rails/spec/model_lifecycle_spec.rb +63 -0
- data/sunspot_rails/spec/model_spec.rb +601 -0
- data/sunspot_rails/spec/rails_template/app/controllers/application_controller.rb +10 -0
- data/sunspot_rails/spec/rails_template/app/controllers/posts_controller.rb +6 -0
- data/sunspot_rails/spec/rails_template/app/models/author.rb +10 -0
- data/sunspot_rails/spec/rails_template/app/models/blog.rb +14 -0
- data/sunspot_rails/spec/rails_template/app/models/location.rb +3 -0
- data/sunspot_rails/spec/rails_template/app/models/photo_post.rb +2 -0
- data/sunspot_rails/spec/rails_template/app/models/post.rb +13 -0
- data/sunspot_rails/spec/rails_template/app/models/post_with_auto.rb +12 -0
- data/sunspot_rails/spec/rails_template/app/models/post_with_default_scope.rb +13 -0
- data/sunspot_rails/spec/rails_template/config/boot.rb +127 -0
- data/sunspot_rails/spec/rails_template/config/preinitializer.rb +22 -0
- data/sunspot_rails/spec/rails_template/config/routes.rb +9 -0
- data/sunspot_rails/spec/rails_template/config/sunspot.yml +24 -0
- data/sunspot_rails/spec/rails_template/db/schema.rb +27 -0
- data/sunspot_rails/spec/request_lifecycle_spec.rb +61 -0
- data/sunspot_rails/spec/schema.rb +27 -0
- data/sunspot_rails/spec/searchable_spec.rb +12 -0
- data/sunspot_rails/spec/server_spec.rb +33 -0
- data/sunspot_rails/spec/session_spec.rb +57 -0
- data/sunspot_rails/spec/shared_examples/indexed_after_save.rb +8 -0
- data/sunspot_rails/spec/shared_examples/not_indexed_after_save.rb +8 -0
- data/sunspot_rails/spec/spec_helper.rb +48 -0
- data/sunspot_rails/spec/stub_session_proxy_spec.rb +122 -0
- data/sunspot_rails/sunspot_rails.gemspec +43 -0
- data/{Gemfile → sunspot_solr/Gemfile} +0 -0
- data/{README.rdoc → sunspot_solr/README.rdoc} +0 -0
- data/{bin → sunspot_solr/bin}/sunspot-installer +0 -0
- data/{bin → sunspot_solr/bin}/sunspot-solr +0 -0
- data/{lib → sunspot_solr/lib}/sunspot/solr/installer.rb +0 -0
- data/{lib → sunspot_solr/lib}/sunspot/solr/installer/config_installer.rb +0 -0
- data/{lib → sunspot_solr/lib}/sunspot/solr/installer/task_helper.rb +0 -0
- data/{lib → sunspot_solr/lib}/sunspot/solr/java.rb +0 -0
- data/{lib → sunspot_solr/lib}/sunspot/solr/railtie.rb +0 -0
- data/{lib → sunspot_solr/lib}/sunspot/solr/server.rb +1 -2
- data/{lib → sunspot_solr/lib}/sunspot/solr/tasks.rb +0 -0
- data/{lib → sunspot_solr/lib}/sunspot_solr.rb +0 -0
- data/{solr → sunspot_solr/solr}/README.txt +0 -0
- data/{solr → sunspot_solr/solr}/etc/jetty.xml +0 -0
- data/{solr → sunspot_solr/solr}/etc/webdefault.xml +0 -0
- data/{solr → sunspot_solr/solr}/lib/jetty-6.1.26-patched-JETTY-1340.jar +0 -0
- data/{solr → sunspot_solr/solr}/lib/jetty-util-6.1.26-patched-JETTY-1340.jar +0 -0
- data/{solr → sunspot_solr/solr}/lib/jsp-2.1/ant-1.6.5.jar +0 -0
- data/{solr → sunspot_solr/solr}/lib/jsp-2.1/core-3.1.1.jar +0 -0
- data/{solr → sunspot_solr/solr}/lib/jsp-2.1/jsp-2.1.jar +0 -0
- data/{solr → sunspot_solr/solr}/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
- data/{solr → sunspot_solr/solr}/lib/servlet-api-2.5-20081211.jar +0 -0
- data/{solr → sunspot_solr/solr}/solr/.gitignore +0 -0
- data/{solr → sunspot_solr/solr}/solr/README.txt +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/admin-extra.html +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/elevate.xml +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/mapping-ISOLatin1Accent.txt +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/protwords.txt +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/schema.xml +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/scripts.conf +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/solrconfig.xml +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/spellings.txt +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/stopwords.txt +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/synonyms.txt +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/xslt/example.xsl +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/xslt/example_atom.xsl +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/xslt/example_rss.xsl +0 -0
- data/{solr → sunspot_solr/solr}/solr/conf/xslt/luke.xsl +0 -0
- data/{solr → sunspot_solr/solr}/start.jar +0 -0
- data/{solr → sunspot_solr/solr}/webapps/solr.war +0 -0
- data/{spec → sunspot_solr/spec}/server_spec.rb +0 -0
- data/{spec → sunspot_solr/spec}/spec_helper.rb +0 -0
- data/{sunspot_solr.gemspec → sunspot_solr/sunspot_solr.gemspec} +0 -0
- data/tools/gem_tasks.rb +69 -0
- metadata +340 -110
metadata
CHANGED
@@ -1,16 +1,10 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sunspot_solr
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 2
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- pre
|
10
|
-
- 120720
|
11
|
-
version: 2.0.0.pre.120720
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0.pre.120924
|
5
|
+
prerelease: 6
|
12
6
|
platform: ruby
|
13
|
-
authors:
|
7
|
+
authors:
|
14
8
|
- Mat Brown
|
15
9
|
- Peer Allan
|
16
10
|
- Dmitriy Dzema
|
@@ -33,125 +27,361 @@ authors:
|
|
33
27
|
autorequire:
|
34
28
|
bindir: bin
|
35
29
|
cert_chain: []
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
dependencies:
|
40
|
-
- !ruby/object:Gem::Dependency
|
30
|
+
date: 2012-09-24 00:00:00.000000000 Z
|
31
|
+
dependencies:
|
32
|
+
- !ruby/object:Gem::Dependency
|
41
33
|
name: rspec
|
42
|
-
|
43
|
-
|
44
|
-
requirements:
|
34
|
+
requirement: &70253670266660 !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
36
|
+
requirements:
|
45
37
|
- - ~>
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
|
48
|
-
- 1
|
49
|
-
- 1
|
50
|
-
version: "1.1"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.1'
|
51
40
|
type: :development
|
52
|
-
version_requirements: *id001
|
53
|
-
- !ruby/object:Gem::Dependency
|
54
|
-
name: hanna
|
55
41
|
prerelease: false
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
42
|
+
version_requirements: *70253670266660
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: hanna
|
45
|
+
requirement: &70253670265880 !ruby/object:Gem::Requirement
|
46
|
+
none: false
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '0'
|
63
51
|
type: :development
|
64
|
-
|
65
|
-
|
66
|
-
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: *70253670265880
|
54
|
+
description: ! " Sunspot::Solr provides a bundled Solr distribution for use with
|
55
|
+
Sunspot.\n Typical deployment environments will require more configuration, but
|
56
|
+
this\n distribution is well suited to development and testing.\n"
|
57
|
+
email:
|
67
58
|
- mat@patch.com
|
68
|
-
executables:
|
69
|
-
- sunspot-installer
|
70
|
-
- sunspot-solr
|
59
|
+
executables: []
|
71
60
|
extensions: []
|
72
|
-
|
73
61
|
extra_rdoc_files: []
|
74
|
-
|
75
|
-
|
76
|
-
-
|
77
|
-
- README.
|
78
|
-
-
|
79
|
-
-
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
-
|
85
|
-
-
|
86
|
-
-
|
87
|
-
- lib/
|
88
|
-
-
|
89
|
-
-
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
-
|
119
|
-
|
62
|
+
files:
|
63
|
+
- .gitignore
|
64
|
+
- .travis.yml
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- ci/travis.sh
|
68
|
+
- sunspot/.gitignore
|
69
|
+
- sunspot/Gemfile
|
70
|
+
- sunspot/History.txt
|
71
|
+
- sunspot/LICENSE
|
72
|
+
- sunspot/Rakefile
|
73
|
+
- sunspot/TODO
|
74
|
+
- sunspot/lib/light_config.rb
|
75
|
+
- sunspot/lib/sunspot.rb
|
76
|
+
- sunspot/lib/sunspot/adapters.rb
|
77
|
+
- sunspot/lib/sunspot/batcher.rb
|
78
|
+
- sunspot/lib/sunspot/class_set.rb
|
79
|
+
- sunspot/lib/sunspot/composite_setup.rb
|
80
|
+
- sunspot/lib/sunspot/configuration.rb
|
81
|
+
- sunspot/lib/sunspot/data_extractor.rb
|
82
|
+
- sunspot/lib/sunspot/dsl.rb
|
83
|
+
- sunspot/lib/sunspot/dsl/adjustable.rb
|
84
|
+
- sunspot/lib/sunspot/dsl/field_group.rb
|
85
|
+
- sunspot/lib/sunspot/dsl/field_query.rb
|
86
|
+
- sunspot/lib/sunspot/dsl/fields.rb
|
87
|
+
- sunspot/lib/sunspot/dsl/fulltext.rb
|
88
|
+
- sunspot/lib/sunspot/dsl/function.rb
|
89
|
+
- sunspot/lib/sunspot/dsl/functional.rb
|
90
|
+
- sunspot/lib/sunspot/dsl/more_like_this_query.rb
|
91
|
+
- sunspot/lib/sunspot/dsl/paginatable.rb
|
92
|
+
- sunspot/lib/sunspot/dsl/query_facet.rb
|
93
|
+
- sunspot/lib/sunspot/dsl/restriction.rb
|
94
|
+
- sunspot/lib/sunspot/dsl/restriction_with_near.rb
|
95
|
+
- sunspot/lib/sunspot/dsl/scope.rb
|
96
|
+
- sunspot/lib/sunspot/dsl/search.rb
|
97
|
+
- sunspot/lib/sunspot/dsl/standard_query.rb
|
98
|
+
- sunspot/lib/sunspot/field.rb
|
99
|
+
- sunspot/lib/sunspot/field_factory.rb
|
100
|
+
- sunspot/lib/sunspot/indexer.rb
|
101
|
+
- sunspot/lib/sunspot/query.rb
|
102
|
+
- sunspot/lib/sunspot/query/abstract_field_facet.rb
|
103
|
+
- sunspot/lib/sunspot/query/bbox.rb
|
104
|
+
- sunspot/lib/sunspot/query/boost_query.rb
|
105
|
+
- sunspot/lib/sunspot/query/common_query.rb
|
106
|
+
- sunspot/lib/sunspot/query/composite_fulltext.rb
|
107
|
+
- sunspot/lib/sunspot/query/connective.rb
|
108
|
+
- sunspot/lib/sunspot/query/date_field_facet.rb
|
109
|
+
- sunspot/lib/sunspot/query/dismax.rb
|
110
|
+
- sunspot/lib/sunspot/query/field_facet.rb
|
111
|
+
- sunspot/lib/sunspot/query/field_group.rb
|
112
|
+
- sunspot/lib/sunspot/query/filter.rb
|
113
|
+
- sunspot/lib/sunspot/query/function_query.rb
|
114
|
+
- sunspot/lib/sunspot/query/geo.rb
|
115
|
+
- sunspot/lib/sunspot/query/geofilt.rb
|
116
|
+
- sunspot/lib/sunspot/query/highlighting.rb
|
117
|
+
- sunspot/lib/sunspot/query/more_like_this.rb
|
118
|
+
- sunspot/lib/sunspot/query/more_like_this_query.rb
|
119
|
+
- sunspot/lib/sunspot/query/pagination.rb
|
120
|
+
- sunspot/lib/sunspot/query/query_facet.rb
|
121
|
+
- sunspot/lib/sunspot/query/range_facet.rb
|
122
|
+
- sunspot/lib/sunspot/query/restriction.rb
|
123
|
+
- sunspot/lib/sunspot/query/scope.rb
|
124
|
+
- sunspot/lib/sunspot/query/sort.rb
|
125
|
+
- sunspot/lib/sunspot/query/sort_composite.rb
|
126
|
+
- sunspot/lib/sunspot/query/standard_query.rb
|
127
|
+
- sunspot/lib/sunspot/query/text_field_boost.rb
|
128
|
+
- sunspot/lib/sunspot/schema.rb
|
129
|
+
- sunspot/lib/sunspot/search.rb
|
130
|
+
- sunspot/lib/sunspot/search/abstract_search.rb
|
131
|
+
- sunspot/lib/sunspot/search/date_facet.rb
|
132
|
+
- sunspot/lib/sunspot/search/facet_row.rb
|
133
|
+
- sunspot/lib/sunspot/search/field_facet.rb
|
134
|
+
- sunspot/lib/sunspot/search/field_group.rb
|
135
|
+
- sunspot/lib/sunspot/search/group.rb
|
136
|
+
- sunspot/lib/sunspot/search/highlight.rb
|
137
|
+
- sunspot/lib/sunspot/search/hit.rb
|
138
|
+
- sunspot/lib/sunspot/search/hit_enumerable.rb
|
139
|
+
- sunspot/lib/sunspot/search/more_like_this_search.rb
|
140
|
+
- sunspot/lib/sunspot/search/paginated_collection.rb
|
141
|
+
- sunspot/lib/sunspot/search/query_facet.rb
|
142
|
+
- sunspot/lib/sunspot/search/range_facet.rb
|
143
|
+
- sunspot/lib/sunspot/search/standard_search.rb
|
144
|
+
- sunspot/lib/sunspot/session.rb
|
145
|
+
- sunspot/lib/sunspot/session_proxy.rb
|
146
|
+
- sunspot/lib/sunspot/session_proxy/abstract_session_proxy.rb
|
147
|
+
- sunspot/lib/sunspot/session_proxy/class_sharding_session_proxy.rb
|
148
|
+
- sunspot/lib/sunspot/session_proxy/id_sharding_session_proxy.rb
|
149
|
+
- sunspot/lib/sunspot/session_proxy/master_slave_session_proxy.rb
|
150
|
+
- sunspot/lib/sunspot/session_proxy/retry_5xx_session_proxy.rb
|
151
|
+
- sunspot/lib/sunspot/session_proxy/sharding_session_proxy.rb
|
152
|
+
- sunspot/lib/sunspot/session_proxy/silent_fail_session_proxy.rb
|
153
|
+
- sunspot/lib/sunspot/session_proxy/thread_local_session_proxy.rb
|
154
|
+
- sunspot/lib/sunspot/setup.rb
|
155
|
+
- sunspot/lib/sunspot/text_field_setup.rb
|
156
|
+
- sunspot/lib/sunspot/type.rb
|
157
|
+
- sunspot/lib/sunspot/util.rb
|
158
|
+
- sunspot/lib/sunspot/version.rb
|
159
|
+
- sunspot/log/.gitignore
|
160
|
+
- sunspot/pkg/.gitignore
|
161
|
+
- sunspot/script/console
|
162
|
+
- sunspot/spec/api/adapters_spec.rb
|
163
|
+
- sunspot/spec/api/batcher_spec.rb
|
164
|
+
- sunspot/spec/api/binding_spec.rb
|
165
|
+
- sunspot/spec/api/class_set_spec.rb
|
166
|
+
- sunspot/spec/api/hit_enumerable_spec.rb
|
167
|
+
- sunspot/spec/api/indexer/attributes_spec.rb
|
168
|
+
- sunspot/spec/api/indexer/batch_spec.rb
|
169
|
+
- sunspot/spec/api/indexer/dynamic_fields_spec.rb
|
170
|
+
- sunspot/spec/api/indexer/fixed_fields_spec.rb
|
171
|
+
- sunspot/spec/api/indexer/fulltext_spec.rb
|
172
|
+
- sunspot/spec/api/indexer/removal_spec.rb
|
173
|
+
- sunspot/spec/api/indexer/spec_helper.rb
|
174
|
+
- sunspot/spec/api/indexer_spec.rb
|
175
|
+
- sunspot/spec/api/query/advanced_manipulation_examples.rb
|
176
|
+
- sunspot/spec/api/query/connectives_examples.rb
|
177
|
+
- sunspot/spec/api/query/dsl_spec.rb
|
178
|
+
- sunspot/spec/api/query/dynamic_fields_examples.rb
|
179
|
+
- sunspot/spec/api/query/faceting_examples.rb
|
180
|
+
- sunspot/spec/api/query/fulltext_examples.rb
|
181
|
+
- sunspot/spec/api/query/function_spec.rb
|
182
|
+
- sunspot/spec/api/query/geo_examples.rb
|
183
|
+
- sunspot/spec/api/query/group_spec.rb
|
184
|
+
- sunspot/spec/api/query/highlighting_examples.rb
|
185
|
+
- sunspot/spec/api/query/more_like_this_spec.rb
|
186
|
+
- sunspot/spec/api/query/ordering_pagination_examples.rb
|
187
|
+
- sunspot/spec/api/query/scope_examples.rb
|
188
|
+
- sunspot/spec/api/query/spatial_examples.rb
|
189
|
+
- sunspot/spec/api/query/spec_helper.rb
|
190
|
+
- sunspot/spec/api/query/standard_spec.rb
|
191
|
+
- sunspot/spec/api/query/text_field_scoping_examples.rb
|
192
|
+
- sunspot/spec/api/query/types_spec.rb
|
193
|
+
- sunspot/spec/api/search/dynamic_fields_spec.rb
|
194
|
+
- sunspot/spec/api/search/faceting_spec.rb
|
195
|
+
- sunspot/spec/api/search/highlighting_spec.rb
|
196
|
+
- sunspot/spec/api/search/hits_spec.rb
|
197
|
+
- sunspot/spec/api/search/paginated_collection_spec.rb
|
198
|
+
- sunspot/spec/api/search/results_spec.rb
|
199
|
+
- sunspot/spec/api/search/search_spec.rb
|
200
|
+
- sunspot/spec/api/search/spec_helper.rb
|
201
|
+
- sunspot/spec/api/session_proxy/class_sharding_session_proxy_spec.rb
|
202
|
+
- sunspot/spec/api/session_proxy/id_sharding_session_proxy_spec.rb
|
203
|
+
- sunspot/spec/api/session_proxy/master_slave_session_proxy_spec.rb
|
204
|
+
- sunspot/spec/api/session_proxy/retry_5xx_session_proxy_spec.rb
|
205
|
+
- sunspot/spec/api/session_proxy/sharding_session_proxy_spec.rb
|
206
|
+
- sunspot/spec/api/session_proxy/silent_fail_session_proxy_spec.rb
|
207
|
+
- sunspot/spec/api/session_proxy/spec_helper.rb
|
208
|
+
- sunspot/spec/api/session_proxy/thread_local_session_proxy_spec.rb
|
209
|
+
- sunspot/spec/api/session_spec.rb
|
210
|
+
- sunspot/spec/api/spec_helper.rb
|
211
|
+
- sunspot/spec/api/sunspot_spec.rb
|
212
|
+
- sunspot/spec/ext.rb
|
213
|
+
- sunspot/spec/helpers/indexer_helper.rb
|
214
|
+
- sunspot/spec/helpers/integration_helper.rb
|
215
|
+
- sunspot/spec/helpers/mock_session_helper.rb
|
216
|
+
- sunspot/spec/helpers/query_helper.rb
|
217
|
+
- sunspot/spec/helpers/search_helper.rb
|
218
|
+
- sunspot/spec/integration/dynamic_fields_spec.rb
|
219
|
+
- sunspot/spec/integration/faceting_spec.rb
|
220
|
+
- sunspot/spec/integration/field_grouping_spec.rb
|
221
|
+
- sunspot/spec/integration/geospatial_spec.rb
|
222
|
+
- sunspot/spec/integration/highlighting_spec.rb
|
223
|
+
- sunspot/spec/integration/indexing_spec.rb
|
224
|
+
- sunspot/spec/integration/keyword_search_spec.rb
|
225
|
+
- sunspot/spec/integration/local_search_spec.rb
|
226
|
+
- sunspot/spec/integration/more_like_this_spec.rb
|
227
|
+
- sunspot/spec/integration/scoped_search_spec.rb
|
228
|
+
- sunspot/spec/integration/stored_fields_spec.rb
|
229
|
+
- sunspot/spec/integration/test_pagination.rb
|
230
|
+
- sunspot/spec/integration/unicode_spec.rb
|
231
|
+
- sunspot/spec/mocks/adapters.rb
|
232
|
+
- sunspot/spec/mocks/blog.rb
|
233
|
+
- sunspot/spec/mocks/comment.rb
|
234
|
+
- sunspot/spec/mocks/connection.rb
|
235
|
+
- sunspot/spec/mocks/mock_adapter.rb
|
236
|
+
- sunspot/spec/mocks/mock_class_sharding_session_proxy.rb
|
237
|
+
- sunspot/spec/mocks/mock_record.rb
|
238
|
+
- sunspot/spec/mocks/mock_sharding_session_proxy.rb
|
239
|
+
- sunspot/spec/mocks/photo.rb
|
240
|
+
- sunspot/spec/mocks/post.rb
|
241
|
+
- sunspot/spec/mocks/super_class.rb
|
242
|
+
- sunspot/spec/mocks/user.rb
|
243
|
+
- sunspot/spec/spec_helper.rb
|
244
|
+
- sunspot/sunspot.gemspec
|
245
|
+
- sunspot/tasks/rdoc.rake
|
246
|
+
- sunspot/tasks/schema.rake
|
247
|
+
- sunspot/tasks/todo.rake
|
248
|
+
- sunspot_rails/.gitignore
|
249
|
+
- sunspot_rails/.rspec
|
250
|
+
- sunspot_rails/History.txt
|
251
|
+
- sunspot_rails/LICENSE
|
252
|
+
- sunspot_rails/MIT-LICENSE
|
253
|
+
- sunspot_rails/README.rdoc
|
254
|
+
- sunspot_rails/Rakefile
|
255
|
+
- sunspot_rails/TODO
|
256
|
+
- sunspot_rails/dev_tasks/rdoc.rake
|
257
|
+
- sunspot_rails/dev_tasks/release.rake
|
258
|
+
- sunspot_rails/dev_tasks/spec.rake
|
259
|
+
- sunspot_rails/dev_tasks/todo.rake
|
260
|
+
- sunspot_rails/gemfiles/rails-2.3.14
|
261
|
+
- sunspot_rails/gemfiles/rails-3.0.15
|
262
|
+
- sunspot_rails/gemfiles/rails-3.1.6
|
263
|
+
- sunspot_rails/gemfiles/rails-3.2.6
|
264
|
+
- sunspot_rails/generators/sunspot/sunspot_generator.rb
|
265
|
+
- sunspot_rails/generators/sunspot/templates/sunspot.yml
|
266
|
+
- sunspot_rails/install.rb
|
267
|
+
- sunspot_rails/lib/generators/sunspot_rails.rb
|
268
|
+
- sunspot_rails/lib/generators/sunspot_rails/install/install_generator.rb
|
269
|
+
- sunspot_rails/lib/generators/sunspot_rails/install/templates/config/sunspot.yml
|
270
|
+
- sunspot_rails/lib/sunspot/rails.rb
|
271
|
+
- sunspot_rails/lib/sunspot/rails/adapters.rb
|
272
|
+
- sunspot_rails/lib/sunspot/rails/configuration.rb
|
273
|
+
- sunspot_rails/lib/sunspot/rails/init.rb
|
274
|
+
- sunspot_rails/lib/sunspot/rails/log_subscriber.rb
|
275
|
+
- sunspot_rails/lib/sunspot/rails/railtie.rb
|
276
|
+
- sunspot_rails/lib/sunspot/rails/railties/controller_runtime.rb
|
277
|
+
- sunspot_rails/lib/sunspot/rails/request_lifecycle.rb
|
278
|
+
- sunspot_rails/lib/sunspot/rails/searchable.rb
|
279
|
+
- sunspot_rails/lib/sunspot/rails/server.rb
|
280
|
+
- sunspot_rails/lib/sunspot/rails/solr_instrumentation.rb
|
281
|
+
- sunspot_rails/lib/sunspot/rails/solr_logging.rb
|
282
|
+
- sunspot_rails/lib/sunspot/rails/spec_helper.rb
|
283
|
+
- sunspot_rails/lib/sunspot/rails/stub_session_proxy.rb
|
284
|
+
- sunspot_rails/lib/sunspot/rails/tasks.rb
|
285
|
+
- sunspot_rails/lib/sunspot_rails.rb
|
286
|
+
- sunspot_rails/spec/configuration_spec.rb
|
287
|
+
- sunspot_rails/spec/model_lifecycle_spec.rb
|
288
|
+
- sunspot_rails/spec/model_spec.rb
|
289
|
+
- sunspot_rails/spec/rails_template/app/controllers/application_controller.rb
|
290
|
+
- sunspot_rails/spec/rails_template/app/controllers/posts_controller.rb
|
291
|
+
- sunspot_rails/spec/rails_template/app/models/author.rb
|
292
|
+
- sunspot_rails/spec/rails_template/app/models/blog.rb
|
293
|
+
- sunspot_rails/spec/rails_template/app/models/location.rb
|
294
|
+
- sunspot_rails/spec/rails_template/app/models/photo_post.rb
|
295
|
+
- sunspot_rails/spec/rails_template/app/models/post.rb
|
296
|
+
- sunspot_rails/spec/rails_template/app/models/post_with_auto.rb
|
297
|
+
- sunspot_rails/spec/rails_template/app/models/post_with_default_scope.rb
|
298
|
+
- sunspot_rails/spec/rails_template/config/boot.rb
|
299
|
+
- sunspot_rails/spec/rails_template/config/preinitializer.rb
|
300
|
+
- sunspot_rails/spec/rails_template/config/routes.rb
|
301
|
+
- sunspot_rails/spec/rails_template/config/sunspot.yml
|
302
|
+
- sunspot_rails/spec/rails_template/db/schema.rb
|
303
|
+
- sunspot_rails/spec/request_lifecycle_spec.rb
|
304
|
+
- sunspot_rails/spec/schema.rb
|
305
|
+
- sunspot_rails/spec/searchable_spec.rb
|
306
|
+
- sunspot_rails/spec/server_spec.rb
|
307
|
+
- sunspot_rails/spec/session_spec.rb
|
308
|
+
- sunspot_rails/spec/shared_examples/indexed_after_save.rb
|
309
|
+
- sunspot_rails/spec/shared_examples/not_indexed_after_save.rb
|
310
|
+
- sunspot_rails/spec/spec_helper.rb
|
311
|
+
- sunspot_rails/spec/stub_session_proxy_spec.rb
|
312
|
+
- sunspot_rails/sunspot_rails.gemspec
|
313
|
+
- sunspot_rails/tmp/.gitkeep
|
314
|
+
- sunspot_solr/Gemfile
|
315
|
+
- sunspot_solr/README.rdoc
|
316
|
+
- sunspot_solr/bin/sunspot-installer
|
317
|
+
- sunspot_solr/bin/sunspot-solr
|
318
|
+
- sunspot_solr/lib/sunspot/solr/installer.rb
|
319
|
+
- sunspot_solr/lib/sunspot/solr/installer/config_installer.rb
|
320
|
+
- sunspot_solr/lib/sunspot/solr/installer/task_helper.rb
|
321
|
+
- sunspot_solr/lib/sunspot/solr/java.rb
|
322
|
+
- sunspot_solr/lib/sunspot/solr/railtie.rb
|
323
|
+
- sunspot_solr/lib/sunspot/solr/server.rb
|
324
|
+
- sunspot_solr/lib/sunspot/solr/tasks.rb
|
325
|
+
- sunspot_solr/lib/sunspot_solr.rb
|
326
|
+
- sunspot_solr/solr/README.txt
|
327
|
+
- sunspot_solr/solr/etc/jetty.xml
|
328
|
+
- sunspot_solr/solr/etc/webdefault.xml
|
329
|
+
- sunspot_solr/solr/lib/jetty-6.1.26-patched-JETTY-1340.jar
|
330
|
+
- sunspot_solr/solr/lib/jetty-util-6.1.26-patched-JETTY-1340.jar
|
331
|
+
- sunspot_solr/solr/lib/jsp-2.1/ant-1.6.5.jar
|
332
|
+
- sunspot_solr/solr/lib/jsp-2.1/core-3.1.1.jar
|
333
|
+
- sunspot_solr/solr/lib/jsp-2.1/jsp-2.1.jar
|
334
|
+
- sunspot_solr/solr/lib/jsp-2.1/jsp-api-2.1.jar
|
335
|
+
- sunspot_solr/solr/lib/servlet-api-2.5-20081211.jar
|
336
|
+
- sunspot_solr/solr/solr/.gitignore
|
337
|
+
- sunspot_solr/solr/solr/README.txt
|
338
|
+
- sunspot_solr/solr/solr/conf/admin-extra.html
|
339
|
+
- sunspot_solr/solr/solr/conf/elevate.xml
|
340
|
+
- sunspot_solr/solr/solr/conf/mapping-ISOLatin1Accent.txt
|
341
|
+
- sunspot_solr/solr/solr/conf/protwords.txt
|
342
|
+
- sunspot_solr/solr/solr/conf/schema.xml
|
343
|
+
- sunspot_solr/solr/solr/conf/scripts.conf
|
344
|
+
- sunspot_solr/solr/solr/conf/solrconfig.xml
|
345
|
+
- sunspot_solr/solr/solr/conf/spellings.txt
|
346
|
+
- sunspot_solr/solr/solr/conf/stopwords.txt
|
347
|
+
- sunspot_solr/solr/solr/conf/synonyms.txt
|
348
|
+
- sunspot_solr/solr/solr/conf/xslt/example.xsl
|
349
|
+
- sunspot_solr/solr/solr/conf/xslt/example_atom.xsl
|
350
|
+
- sunspot_solr/solr/solr/conf/xslt/example_rss.xsl
|
351
|
+
- sunspot_solr/solr/solr/conf/xslt/luke.xsl
|
352
|
+
- sunspot_solr/solr/start.jar
|
353
|
+
- sunspot_solr/solr/webapps/solr.war
|
354
|
+
- sunspot_solr/spec/server_spec.rb
|
355
|
+
- sunspot_solr/spec/spec_helper.rb
|
356
|
+
- sunspot_solr/sunspot_solr.gemspec
|
357
|
+
- tools/gem_tasks.rb
|
120
358
|
homepage: https://github.com/outoftime/sunspot/tree/master/sunspot_solr
|
121
359
|
licenses: []
|
122
|
-
|
123
360
|
post_install_message:
|
124
|
-
rdoc_options:
|
361
|
+
rdoc_options:
|
125
362
|
- --webcvs=http://github.com/outoftime/sunspot/tree/master/%s
|
126
363
|
- --title
|
127
364
|
- Sunspot-Solr - Bundled Solr distribution for Sunspot - API Documentation
|
128
365
|
- --main
|
129
366
|
- README.rdoc
|
130
|
-
require_paths:
|
367
|
+
require_paths:
|
131
368
|
- lib
|
132
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
requirements:
|
141
|
-
- -
|
142
|
-
- !ruby/object:Gem::Version
|
143
|
-
segments:
|
144
|
-
- 1
|
145
|
-
- 3
|
146
|
-
- 1
|
369
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
370
|
+
none: false
|
371
|
+
requirements:
|
372
|
+
- - ! '>='
|
373
|
+
- !ruby/object:Gem::Version
|
374
|
+
version: '0'
|
375
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
376
|
+
none: false
|
377
|
+
requirements:
|
378
|
+
- - ! '>'
|
379
|
+
- !ruby/object:Gem::Version
|
147
380
|
version: 1.3.1
|
148
381
|
requirements: []
|
149
|
-
|
150
382
|
rubyforge_project: sunspot
|
151
|
-
rubygems_version: 1.
|
383
|
+
rubygems_version: 1.8.15
|
152
384
|
signing_key:
|
153
385
|
specification_version: 3
|
154
386
|
summary: Bundled Solr distribution for Sunspot
|
155
|
-
test_files:
|
156
|
-
- spec/server_spec.rb
|
157
|
-
- spec/spec_helper.rb
|
387
|
+
test_files: []
|