xapit 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +27 -0
- data/Manifest +16 -1
- data/README.rdoc +29 -15
- data/Rakefile +1 -1
- data/features/facets.feature +40 -1
- data/features/finding.feature +15 -59
- data/features/sorting.feature +29 -0
- data/features/step_definitions/xapit_steps.rb +11 -3
- data/features/suggestions.feature +17 -0
- data/features/support/xapit_helpers.rb +1 -1
- data/install.rb +7 -8
- data/lib/xapit.rb +34 -2
- data/lib/xapit/adapters/abstract_adapter.rb +46 -0
- data/lib/xapit/adapters/active_record_adapter.rb +20 -0
- data/lib/xapit/adapters/data_mapper_adapter.rb +10 -0
- data/lib/xapit/collection.rb +17 -5
- data/lib/xapit/config.rb +1 -9
- data/lib/xapit/facet.rb +11 -8
- data/lib/xapit/index_blueprint.rb +9 -3
- data/lib/xapit/indexers/abstract_indexer.rb +13 -2
- data/lib/xapit/indexers/classic_indexer.rb +5 -3
- data/lib/xapit/indexers/simple_indexer.rb +15 -8
- data/lib/xapit/membership.rb +19 -1
- data/lib/xapit/query.rb +40 -15
- data/lib/xapit/query_parsers/abstract_query_parser.rb +46 -24
- data/lib/xapit/rake_tasks.rb +13 -0
- data/rails_generators/xapit/USAGE +13 -0
- data/rails_generators/xapit/templates/setup_xapit.rb +1 -0
- data/rails_generators/xapit/templates/xapit.rake +4 -0
- data/rails_generators/xapit/xapit_generator.rb +20 -0
- data/spec/spec_helper.rb +2 -2
- data/spec/xapit/adapters/active_record_adapter_spec.rb +31 -0
- data/spec/xapit/adapters/data_mapper_adapter_spec.rb +10 -0
- data/spec/xapit/facet_option_spec.rb +2 -2
- data/spec/xapit/index_blueprint_spec.rb +11 -3
- data/spec/xapit/indexers/abstract_indexer_spec.rb +37 -0
- data/spec/xapit/indexers/classic_indexer_spec.rb +9 -0
- data/spec/xapit/indexers/simple_indexer_spec.rb +22 -6
- data/spec/xapit/membership_spec.rb +16 -0
- data/spec/xapit/query_parsers/abstract_query_parser_spec.rb +21 -3
- data/spec/xapit/query_spec.rb +21 -0
- data/spec/xapit_member.rb +13 -2
- data/tasks/xapit.rake +1 -9
- data/tmp/xapiandatabase/postlist.DB +0 -0
- data/tmp/xapiandatabase/postlist.baseB +0 -0
- data/tmp/xapiandatabase/record.DB +0 -0
- data/tmp/xapiandatabase/record.baseB +0 -0
- data/tmp/xapiandatabase/spelling.DB +0 -0
- data/tmp/xapiandatabase/spelling.baseB +0 -0
- data/tmp/xapiandatabase/termlist.DB +0 -0
- data/tmp/xapiandatabase/termlist.baseB +0 -0
- data/tmp/xapiandatabase/value.DB +0 -0
- data/tmp/xapiandatabase/value.baseA +0 -0
- data/tmp/xapiandb/spelling.DB +0 -0
- data/tmp/xapiandb/spelling.baseB +0 -0
- data/xapit.gemspec +4 -4
- metadata +23 -3
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/tmp/xapiandb/spelling.DB
CHANGED
Binary file
|
data/tmp/xapiandb/spelling.baseB
CHANGED
Binary file
|
data/xapit.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{xapit}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "0.2.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Ryan Bates"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-06-12}
|
10
10
|
s.description = %q{Ruby library for interacting with Xapian, a full text search engine.}
|
11
11
|
s.email = %q{ryan (at) railscasts (dot) com}
|
12
|
-
s.extra_rdoc_files = ["lib/xapit/collection.rb", "lib/xapit/config.rb", "lib/xapit/facet.rb", "lib/xapit/facet_blueprint.rb", "lib/xapit/facet_option.rb", "lib/xapit/index_blueprint.rb", "lib/xapit/indexers/abstract_indexer.rb", "lib/xapit/indexers/classic_indexer.rb", "lib/xapit/indexers/simple_indexer.rb", "lib/xapit/membership.rb", "lib/xapit/query.rb", "lib/xapit/query_parsers/abstract_query_parser.rb", "lib/xapit/query_parsers/classic_query_parser.rb", "lib/xapit/query_parsers/simple_query_parser.rb", "lib/xapit.rb", "LICENSE", "README.rdoc", "tasks/spec.rb", "tasks/xapit.rake", "TODO"]
|
13
|
-
s.files = ["features/facets.feature", "features/finding.feature", "features/indexing.feature", "features/step_definitions/common_steps.rb", "features/step_definitions/xapit_steps.rb", "features/support/env.rb", "features/support/xapit_helpers.rb", "init.rb", "install.rb", "lib/xapit/collection.rb", "lib/xapit/config.rb", "lib/xapit/facet.rb", "lib/xapit/facet_blueprint.rb", "lib/xapit/facet_option.rb", "lib/xapit/index_blueprint.rb", "lib/xapit/indexers/abstract_indexer.rb", "lib/xapit/indexers/classic_indexer.rb", "lib/xapit/indexers/simple_indexer.rb", "lib/xapit/membership.rb", "lib/xapit/query.rb", "lib/xapit/query_parsers/abstract_query_parser.rb", "lib/xapit/query_parsers/classic_query_parser.rb", "lib/xapit/query_parsers/simple_query_parser.rb", "lib/xapit.rb", "LICENSE", "Rakefile", "README.rdoc", "spec/spec_helper.rb", "spec/tmp/xapdb/flintlock", "spec/tmp/xapdb/iamflint", "spec/tmp/xapdb/postlist.baseA", "spec/tmp/xapdb/postlist.baseB", "spec/tmp/xapdb/postlist.DB", "spec/tmp/xapdb/record.baseA", "spec/tmp/xapdb/record.baseB", "spec/tmp/xapdb/record.DB", "spec/tmp/xapdb/spelling.baseA", "spec/tmp/xapdb/spelling.baseB", "spec/tmp/xapdb/spelling.DB", "spec/tmp/xapdb/termlist.baseA", "spec/tmp/xapdb/termlist.baseB", "spec/tmp/xapdb/termlist.DB", "spec/tmp/xapian_db/flintlock", "spec/tmp/xapian_db/iamflint", "spec/tmp/xapian_db/postlist.baseA", "spec/tmp/xapian_db/postlist.DB", "spec/tmp/xapian_db/record.baseA", "spec/tmp/xapian_db/record.DB", "spec/tmp/xapian_db/termlist.baseA", "spec/tmp/xapian_db/termlist.DB", "spec/tmp/xapiandab/flintlock", "spec/tmp/xapiandab/iamflint", "spec/tmp/xapiandab/postlist.baseA", "spec/tmp/xapiandab/postlist.baseB", "spec/tmp/xapiandab/postlist.DB", "spec/tmp/xapiandab/record.baseA", "spec/tmp/xapiandab/record.baseB", "spec/tmp/xapiandab/record.DB", "spec/tmp/xapiandab/spelling.baseA", "spec/tmp/xapiandab/spelling.baseB", "spec/tmp/xapiandab/spelling.DB", "spec/tmp/xapiandab/termlist.baseA", "spec/tmp/xapiandab/termlist.baseB", "spec/tmp/xapiandab/termlist.DB", "spec/tmp/xapiandatab/flintlock", "spec/tmp/xapiandatab/iamflint", "spec/tmp/xapiandatab/postlist.baseA", "spec/tmp/xapiandatab/postlist.baseB", "spec/tmp/xapiandatab/postlist.DB", "spec/tmp/xapiandatab/record.baseA", "spec/tmp/xapiandatab/record.baseB", "spec/tmp/xapiandatab/record.DB", "spec/tmp/xapiandatab/spelling.baseA", "spec/tmp/xapiandatab/spelling.baseB", "spec/tmp/xapiandatab/spelling.DB", "spec/tmp/xapiandatab/termlist.baseA", "spec/tmp/xapiandatab/termlist.baseB", "spec/tmp/xapiandatab/termlist.DB", "spec/tmp/xapiandataba/flintlock", "spec/tmp/xapiandataba/iamflint", "spec/tmp/xapiandataba/postlist.baseA", "spec/tmp/xapiandataba/postlist.baseB", "spec/tmp/xapiandataba/postlist.DB", "spec/tmp/xapiandataba/record.baseA", "spec/tmp/xapiandataba/record.baseB", "spec/tmp/xapiandataba/record.DB", "spec/tmp/xapiandataba/spelling.baseA", "spec/tmp/xapiandataba/spelling.baseB", "spec/tmp/xapiandataba/spelling.DB", "spec/tmp/xapiandataba/termlist.baseA", "spec/tmp/xapiandataba/termlist.baseB", "spec/tmp/xapiandataba/termlist.DB", "spec/tmp/xapiandatabas/flintlock", "spec/tmp/xapiandatabas/iamflint", "spec/tmp/xapiandatabas/postlist.baseA", "spec/tmp/xapiandatabas/postlist.DB", "spec/tmp/xapiandatabas/record.baseA", "spec/tmp/xapiandatabas/record.DB", "spec/tmp/xapiandatabas/termlist.baseA", "spec/tmp/xapiandatabas/termlist.DB", "spec/tmp/xapiandatb/flintlock", "spec/tmp/xapiandatb/iamflint", "spec/tmp/xapiandatb/postlist.baseA", "spec/tmp/xapiandatb/postlist.baseB", "spec/tmp/xapiandatb/postlist.DB", "spec/tmp/xapiandatb/record.baseA", "spec/tmp/xapiandatb/record.baseB", "spec/tmp/xapiandatb/record.DB", "spec/tmp/xapiandatb/spelling.baseA", "spec/tmp/xapiandatb/spelling.baseB", "spec/tmp/xapiandatb/spelling.DB", "spec/tmp/xapiandatb/termlist.baseA", "spec/tmp/xapiandatb/termlist.baseB", "spec/tmp/xapiandatb/termlist.DB", "spec/tmp/xapiandbase/flintlock", "spec/tmp/xapiandbase/iamflint", "spec/tmp/xapiandbase/postlist.baseA", "spec/tmp/xapiandbase/postlist.baseB", "spec/tmp/xapiandbase/postlist.DB", "spec/tmp/xapiandbase/record.baseA", "spec/tmp/xapiandbase/record.baseB", "spec/tmp/xapiandbase/record.DB", "spec/tmp/xapiandbase/spelling.baseA", "spec/tmp/xapiandbase/spelling.baseB", "spec/tmp/xapiandbase/spelling.DB", "spec/tmp/xapiandbase/termlist.baseA", "spec/tmp/xapiandbase/termlist.baseB", "spec/tmp/xapiandbase/termlist.DB", "spec/xapit/collection_spec.rb", "spec/xapit/config_spec.rb", "spec/xapit/facet_blueprint_spec.rb", "spec/xapit/facet_option_spec.rb", "spec/xapit/facet_spec.rb", "spec/xapit/index_blueprint_spec.rb", "spec/xapit/indexers/abstract_indexer_spec.rb", "spec/xapit/indexers/classic_indexer_spec.rb", "spec/xapit/indexers/simple_indexer_spec.rb", "spec/xapit/membership_spec.rb", "spec/xapit/query_parsers/abstract_query_parser_spec.rb", "spec/xapit/query_parsers/classic_query_parser_spec.rb", "spec/xapit/query_parsers/simple_query_parser_spec.rb", "spec/xapit/query_spec.rb", "spec/xapit_member.rb", "tasks/spec.rb", "tasks/xapit.rake", "tmp/xapiandatabase/flintlock", "tmp/xapiandatabase/iamflint", "tmp/xapiandatabase/postlist.baseA", "tmp/xapiandatabase/postlist.baseB", "tmp/xapiandatabase/postlist.DB", "tmp/xapiandatabase/record.baseA", "tmp/xapiandatabase/record.baseB", "tmp/xapiandatabase/record.DB", "tmp/xapiandatabase/spelling.baseA", "tmp/xapiandatabase/spelling.baseB", "tmp/xapiandatabase/spelling.DB", "tmp/xapiandatabase/termlist.baseA", "tmp/xapiandatabase/termlist.baseB", "tmp/xapiandatabase/termlist.DB", "tmp/xapiandatabase/value.baseB", "tmp/xapiandb/flintlock", "tmp/xapiandb/iamflint", "tmp/xapiandb/postlist.baseA", "tmp/xapiandb/postlist.baseB", "tmp/xapiandb/postlist.DB", "tmp/xapiandb/record.baseA", "tmp/xapiandb/record.baseB", "tmp/xapiandb/record.DB", "tmp/xapiandb/spelling.baseA", "tmp/xapiandb/spelling.baseB", "tmp/xapiandb/spelling.DB", "tmp/xapiandb/termlist.baseA", "tmp/xapiandb/termlist.baseB", "tmp/xapiandb/termlist.DB", "tmp/xapiandb/value.baseB", "TODO", "uninstall.rb", "
|
12
|
+
s.extra_rdoc_files = ["CHANGELOG", "lib/xapit/adapters/abstract_adapter.rb", "lib/xapit/adapters/active_record_adapter.rb", "lib/xapit/adapters/data_mapper_adapter.rb", "lib/xapit/collection.rb", "lib/xapit/config.rb", "lib/xapit/facet.rb", "lib/xapit/facet_blueprint.rb", "lib/xapit/facet_option.rb", "lib/xapit/index_blueprint.rb", "lib/xapit/indexers/abstract_indexer.rb", "lib/xapit/indexers/classic_indexer.rb", "lib/xapit/indexers/simple_indexer.rb", "lib/xapit/membership.rb", "lib/xapit/query.rb", "lib/xapit/query_parsers/abstract_query_parser.rb", "lib/xapit/query_parsers/classic_query_parser.rb", "lib/xapit/query_parsers/simple_query_parser.rb", "lib/xapit/rake_tasks.rb", "lib/xapit.rb", "LICENSE", "README.rdoc", "tasks/spec.rb", "tasks/xapit.rake", "TODO"]
|
13
|
+
s.files = ["CHANGELOG", "features/facets.feature", "features/finding.feature", "features/indexing.feature", "features/sorting.feature", "features/step_definitions/common_steps.rb", "features/step_definitions/xapit_steps.rb", "features/suggestions.feature", "features/support/env.rb", "features/support/xapit_helpers.rb", "init.rb", "install.rb", "lib/xapit/adapters/abstract_adapter.rb", "lib/xapit/adapters/active_record_adapter.rb", "lib/xapit/adapters/data_mapper_adapter.rb", "lib/xapit/collection.rb", "lib/xapit/config.rb", "lib/xapit/facet.rb", "lib/xapit/facet_blueprint.rb", "lib/xapit/facet_option.rb", "lib/xapit/index_blueprint.rb", "lib/xapit/indexers/abstract_indexer.rb", "lib/xapit/indexers/classic_indexer.rb", "lib/xapit/indexers/simple_indexer.rb", "lib/xapit/membership.rb", "lib/xapit/query.rb", "lib/xapit/query_parsers/abstract_query_parser.rb", "lib/xapit/query_parsers/classic_query_parser.rb", "lib/xapit/query_parsers/simple_query_parser.rb", "lib/xapit/rake_tasks.rb", "lib/xapit.rb", "LICENSE", "Manifest", "rails_generators/xapit/templates/setup_xapit.rb", "rails_generators/xapit/templates/xapit.rake", "rails_generators/xapit/USAGE", "rails_generators/xapit/xapit_generator.rb", "Rakefile", "README.rdoc", "spec/spec_helper.rb", "spec/tmp/xapdb/flintlock", "spec/tmp/xapdb/iamflint", "spec/tmp/xapdb/postlist.baseA", "spec/tmp/xapdb/postlist.baseB", "spec/tmp/xapdb/postlist.DB", "spec/tmp/xapdb/record.baseA", "spec/tmp/xapdb/record.baseB", "spec/tmp/xapdb/record.DB", "spec/tmp/xapdb/spelling.baseA", "spec/tmp/xapdb/spelling.baseB", "spec/tmp/xapdb/spelling.DB", "spec/tmp/xapdb/termlist.baseA", "spec/tmp/xapdb/termlist.baseB", "spec/tmp/xapdb/termlist.DB", "spec/tmp/xapian_db/flintlock", "spec/tmp/xapian_db/iamflint", "spec/tmp/xapian_db/postlist.baseA", "spec/tmp/xapian_db/postlist.DB", "spec/tmp/xapian_db/record.baseA", "spec/tmp/xapian_db/record.DB", "spec/tmp/xapian_db/termlist.baseA", "spec/tmp/xapian_db/termlist.DB", "spec/tmp/xapiandab/flintlock", "spec/tmp/xapiandab/iamflint", "spec/tmp/xapiandab/postlist.baseA", "spec/tmp/xapiandab/postlist.baseB", "spec/tmp/xapiandab/postlist.DB", "spec/tmp/xapiandab/record.baseA", "spec/tmp/xapiandab/record.baseB", "spec/tmp/xapiandab/record.DB", "spec/tmp/xapiandab/spelling.baseA", "spec/tmp/xapiandab/spelling.baseB", "spec/tmp/xapiandab/spelling.DB", "spec/tmp/xapiandab/termlist.baseA", "spec/tmp/xapiandab/termlist.baseB", "spec/tmp/xapiandab/termlist.DB", "spec/tmp/xapiandatab/flintlock", "spec/tmp/xapiandatab/iamflint", "spec/tmp/xapiandatab/postlist.baseA", "spec/tmp/xapiandatab/postlist.baseB", "spec/tmp/xapiandatab/postlist.DB", "spec/tmp/xapiandatab/record.baseA", "spec/tmp/xapiandatab/record.baseB", "spec/tmp/xapiandatab/record.DB", "spec/tmp/xapiandatab/spelling.baseA", "spec/tmp/xapiandatab/spelling.baseB", "spec/tmp/xapiandatab/spelling.DB", "spec/tmp/xapiandatab/termlist.baseA", "spec/tmp/xapiandatab/termlist.baseB", "spec/tmp/xapiandatab/termlist.DB", "spec/tmp/xapiandataba/flintlock", "spec/tmp/xapiandataba/iamflint", "spec/tmp/xapiandataba/postlist.baseA", "spec/tmp/xapiandataba/postlist.baseB", "spec/tmp/xapiandataba/postlist.DB", "spec/tmp/xapiandataba/record.baseA", "spec/tmp/xapiandataba/record.baseB", "spec/tmp/xapiandataba/record.DB", "spec/tmp/xapiandataba/spelling.baseA", "spec/tmp/xapiandataba/spelling.baseB", "spec/tmp/xapiandataba/spelling.DB", "spec/tmp/xapiandataba/termlist.baseA", "spec/tmp/xapiandataba/termlist.baseB", "spec/tmp/xapiandataba/termlist.DB", "spec/tmp/xapiandatabas/flintlock", "spec/tmp/xapiandatabas/iamflint", "spec/tmp/xapiandatabas/postlist.baseA", "spec/tmp/xapiandatabas/postlist.DB", "spec/tmp/xapiandatabas/record.baseA", "spec/tmp/xapiandatabas/record.DB", "spec/tmp/xapiandatabas/termlist.baseA", "spec/tmp/xapiandatabas/termlist.DB", "spec/tmp/xapiandatb/flintlock", "spec/tmp/xapiandatb/iamflint", "spec/tmp/xapiandatb/postlist.baseA", "spec/tmp/xapiandatb/postlist.baseB", "spec/tmp/xapiandatb/postlist.DB", "spec/tmp/xapiandatb/record.baseA", "spec/tmp/xapiandatb/record.baseB", "spec/tmp/xapiandatb/record.DB", "spec/tmp/xapiandatb/spelling.baseA", "spec/tmp/xapiandatb/spelling.baseB", "spec/tmp/xapiandatb/spelling.DB", "spec/tmp/xapiandatb/termlist.baseA", "spec/tmp/xapiandatb/termlist.baseB", "spec/tmp/xapiandatb/termlist.DB", "spec/tmp/xapiandbase/flintlock", "spec/tmp/xapiandbase/iamflint", "spec/tmp/xapiandbase/postlist.baseA", "spec/tmp/xapiandbase/postlist.baseB", "spec/tmp/xapiandbase/postlist.DB", "spec/tmp/xapiandbase/record.baseA", "spec/tmp/xapiandbase/record.baseB", "spec/tmp/xapiandbase/record.DB", "spec/tmp/xapiandbase/spelling.baseA", "spec/tmp/xapiandbase/spelling.baseB", "spec/tmp/xapiandbase/spelling.DB", "spec/tmp/xapiandbase/termlist.baseA", "spec/tmp/xapiandbase/termlist.baseB", "spec/tmp/xapiandbase/termlist.DB", "spec/xapit/adapters/active_record_adapter_spec.rb", "spec/xapit/adapters/data_mapper_adapter_spec.rb", "spec/xapit/collection_spec.rb", "spec/xapit/config_spec.rb", "spec/xapit/facet_blueprint_spec.rb", "spec/xapit/facet_option_spec.rb", "spec/xapit/facet_spec.rb", "spec/xapit/index_blueprint_spec.rb", "spec/xapit/indexers/abstract_indexer_spec.rb", "spec/xapit/indexers/classic_indexer_spec.rb", "spec/xapit/indexers/simple_indexer_spec.rb", "spec/xapit/membership_spec.rb", "spec/xapit/query_parsers/abstract_query_parser_spec.rb", "spec/xapit/query_parsers/classic_query_parser_spec.rb", "spec/xapit/query_parsers/simple_query_parser_spec.rb", "spec/xapit/query_spec.rb", "spec/xapit_member.rb", "tasks/spec.rb", "tasks/xapit.rake", "tmp/xapiandatabase/flintlock", "tmp/xapiandatabase/iamflint", "tmp/xapiandatabase/postlist.baseA", "tmp/xapiandatabase/postlist.baseB", "tmp/xapiandatabase/postlist.DB", "tmp/xapiandatabase/record.baseA", "tmp/xapiandatabase/record.baseB", "tmp/xapiandatabase/record.DB", "tmp/xapiandatabase/spelling.baseA", "tmp/xapiandatabase/spelling.baseB", "tmp/xapiandatabase/spelling.DB", "tmp/xapiandatabase/termlist.baseA", "tmp/xapiandatabase/termlist.baseB", "tmp/xapiandatabase/termlist.DB", "tmp/xapiandatabase/value.baseA", "tmp/xapiandatabase/value.baseB", "tmp/xapiandatabase/value.DB", "tmp/xapiandb/flintlock", "tmp/xapiandb/iamflint", "tmp/xapiandb/postlist.baseA", "tmp/xapiandb/postlist.baseB", "tmp/xapiandb/postlist.DB", "tmp/xapiandb/record.baseA", "tmp/xapiandb/record.baseB", "tmp/xapiandb/record.DB", "tmp/xapiandb/spelling.baseA", "tmp/xapiandb/spelling.baseB", "tmp/xapiandb/spelling.DB", "tmp/xapiandb/termlist.baseA", "tmp/xapiandb/termlist.baseB", "tmp/xapiandb/termlist.DB", "tmp/xapiandb/value.baseB", "TODO", "uninstall.rb", "xapit.gemspec"]
|
14
14
|
s.homepage = %q{http://github.com/ryanb/xapit}
|
15
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Xapit", "--main", "README.rdoc"]
|
16
16
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xapit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Bates
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-06-12 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -20,6 +20,10 @@ executables: []
|
|
20
20
|
extensions: []
|
21
21
|
|
22
22
|
extra_rdoc_files:
|
23
|
+
- CHANGELOG
|
24
|
+
- lib/xapit/adapters/abstract_adapter.rb
|
25
|
+
- lib/xapit/adapters/active_record_adapter.rb
|
26
|
+
- lib/xapit/adapters/data_mapper_adapter.rb
|
23
27
|
- lib/xapit/collection.rb
|
24
28
|
- lib/xapit/config.rb
|
25
29
|
- lib/xapit/facet.rb
|
@@ -34,6 +38,7 @@ extra_rdoc_files:
|
|
34
38
|
- lib/xapit/query_parsers/abstract_query_parser.rb
|
35
39
|
- lib/xapit/query_parsers/classic_query_parser.rb
|
36
40
|
- lib/xapit/query_parsers/simple_query_parser.rb
|
41
|
+
- lib/xapit/rake_tasks.rb
|
37
42
|
- lib/xapit.rb
|
38
43
|
- LICENSE
|
39
44
|
- README.rdoc
|
@@ -41,15 +46,21 @@ extra_rdoc_files:
|
|
41
46
|
- tasks/xapit.rake
|
42
47
|
- TODO
|
43
48
|
files:
|
49
|
+
- CHANGELOG
|
44
50
|
- features/facets.feature
|
45
51
|
- features/finding.feature
|
46
52
|
- features/indexing.feature
|
53
|
+
- features/sorting.feature
|
47
54
|
- features/step_definitions/common_steps.rb
|
48
55
|
- features/step_definitions/xapit_steps.rb
|
56
|
+
- features/suggestions.feature
|
49
57
|
- features/support/env.rb
|
50
58
|
- features/support/xapit_helpers.rb
|
51
59
|
- init.rb
|
52
60
|
- install.rb
|
61
|
+
- lib/xapit/adapters/abstract_adapter.rb
|
62
|
+
- lib/xapit/adapters/active_record_adapter.rb
|
63
|
+
- lib/xapit/adapters/data_mapper_adapter.rb
|
53
64
|
- lib/xapit/collection.rb
|
54
65
|
- lib/xapit/config.rb
|
55
66
|
- lib/xapit/facet.rb
|
@@ -64,8 +75,14 @@ files:
|
|
64
75
|
- lib/xapit/query_parsers/abstract_query_parser.rb
|
65
76
|
- lib/xapit/query_parsers/classic_query_parser.rb
|
66
77
|
- lib/xapit/query_parsers/simple_query_parser.rb
|
78
|
+
- lib/xapit/rake_tasks.rb
|
67
79
|
- lib/xapit.rb
|
68
80
|
- LICENSE
|
81
|
+
- Manifest
|
82
|
+
- rails_generators/xapit/templates/setup_xapit.rb
|
83
|
+
- rails_generators/xapit/templates/xapit.rake
|
84
|
+
- rails_generators/xapit/USAGE
|
85
|
+
- rails_generators/xapit/xapit_generator.rb
|
69
86
|
- Rakefile
|
70
87
|
- README.rdoc
|
71
88
|
- spec/spec_helper.rb
|
@@ -169,6 +186,8 @@ files:
|
|
169
186
|
- spec/tmp/xapiandbase/termlist.baseA
|
170
187
|
- spec/tmp/xapiandbase/termlist.baseB
|
171
188
|
- spec/tmp/xapiandbase/termlist.DB
|
189
|
+
- spec/xapit/adapters/active_record_adapter_spec.rb
|
190
|
+
- spec/xapit/adapters/data_mapper_adapter_spec.rb
|
172
191
|
- spec/xapit/collection_spec.rb
|
173
192
|
- spec/xapit/config_spec.rb
|
174
193
|
- spec/xapit/facet_blueprint_spec.rb
|
@@ -200,7 +219,9 @@ files:
|
|
200
219
|
- tmp/xapiandatabase/termlist.baseA
|
201
220
|
- tmp/xapiandatabase/termlist.baseB
|
202
221
|
- tmp/xapiandatabase/termlist.DB
|
222
|
+
- tmp/xapiandatabase/value.baseA
|
203
223
|
- tmp/xapiandatabase/value.baseB
|
224
|
+
- tmp/xapiandatabase/value.DB
|
204
225
|
- tmp/xapiandb/flintlock
|
205
226
|
- tmp/xapiandb/iamflint
|
206
227
|
- tmp/xapiandb/postlist.baseA
|
@@ -218,7 +239,6 @@ files:
|
|
218
239
|
- tmp/xapiandb/value.baseB
|
219
240
|
- TODO
|
220
241
|
- uninstall.rb
|
221
|
-
- Manifest
|
222
242
|
- xapit.gemspec
|
223
243
|
has_rdoc: true
|
224
244
|
homepage: http://github.com/ryanb/xapit
|