Skip to content

Commit

Permalink
Including features as test files in the gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
pat committed Oct 10, 2009
1 parent b9c2b6a commit c735141
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 3 deletions.
5 changes: 4 additions & 1 deletion tasks/distribution.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
"vendor/**/*",
"VERSION.yml"
]
gem.test_files = FileList["spec/**/*_spec.rb"]
gem.test_files = FileList[
"features/**/*",
"spec/**/*_spec.rb"
]

gem.add_dependency 'activerecord', '>= 1.15.6'

Expand Down
106 changes: 104 additions & 2 deletions thinking-sphinx.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Pat Allan"]
s.date = %q{2009-10-05}
s.date = %q{2009-10-10}
s.description = %q{A concise and easy-to-use Ruby library that connects ActiveRecord to the Sphinx search daemon, managing configuration, indexing and searching.}
s.email = %q{pat@freelancing-gods.com}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -113,7 +113,109 @@ http://www.sphinxsearch.com/docs/manual-0.9.8.html#conf-morphology
s.rubygems_version = %q{1.3.5}
s.summary = %q{ActiveRecord/Rails Sphinx library}
s.test_files = [
"spec/lib/thinking_sphinx/active_record/delta_spec.rb",
"features/a.rb",
"features/alternate_primary_key.feature",
"features/attribute_transformation.feature",
"features/attribute_updates.feature",
"features/datetime_deltas.feature",
"features/delayed_delta_indexing.feature",
"features/deleting_instances.feature",
"features/direct_attributes.feature",
"features/excerpts.feature",
"features/extensible_delta_indexing.feature",
"features/facets.feature",
"features/facets_across_model.feature",
"features/handling_edits.feature",
"features/retry_stale_indexes.feature",
"features/searching_across_models.feature",
"features/searching_by_model.feature",
"features/searching_with_find_arguments.feature",
"features/sphinx_detection.feature",
"features/sphinx_scopes.feature",
"features/step_definitions",
"features/step_definitions/alpha_steps.rb",
"features/step_definitions/beta_steps.rb",
"features/step_definitions/common_steps.rb",
"features/step_definitions/datetime_delta_steps.rb",
"features/step_definitions/delayed_delta_indexing_steps.rb",
"features/step_definitions/extensible_delta_indexing_steps.rb",
"features/step_definitions/facet_steps.rb",
"features/step_definitions/find_arguments_steps.rb",
"features/step_definitions/gamma_steps.rb",
"features/step_definitions/scope_steps.rb",
"features/step_definitions/search_steps.rb",
"features/step_definitions/sphinx_steps.rb",
"features/sti_searching.feature",
"features/support",
"features/support/db",
"features/support/db/active_record.rb",
"features/support/db/database.example.yml",
"features/support/db/database.yml",
"features/support/db/fixtures",
"features/support/db/fixtures/alphas.rb",
"features/support/db/fixtures/authors.rb",
"features/support/db/fixtures/betas.rb",
"features/support/db/fixtures/boxes.rb",
"features/support/db/fixtures/categories.rb",
"features/support/db/fixtures/cats.rb",
"features/support/db/fixtures/comments.rb",
"features/support/db/fixtures/delayed_betas.rb",
"features/support/db/fixtures/developers.rb",
"features/support/db/fixtures/dogs.rb",
"features/support/db/fixtures/extensible_betas.rb",
"features/support/db/fixtures/gammas.rb",
"features/support/db/fixtures/people.rb",
"features/support/db/fixtures/posts.rb",
"features/support/db/fixtures/robots.rb",
"features/support/db/fixtures/tags.rb",
"features/support/db/fixtures/thetas.rb",
"features/support/db/migrations",
"features/support/db/migrations/create_alphas.rb",
"features/support/db/migrations/create_animals.rb",
"features/support/db/migrations/create_authors.rb",
"features/support/db/migrations/create_authors_posts.rb",
"features/support/db/migrations/create_betas.rb",
"features/support/db/migrations/create_boxes.rb",
"features/support/db/migrations/create_categories.rb",
"features/support/db/migrations/create_comments.rb",
"features/support/db/migrations/create_delayed_betas.rb",
"features/support/db/migrations/create_developers.rb",
"features/support/db/migrations/create_extensible_betas.rb",
"features/support/db/migrations/create_gammas.rb",
"features/support/db/migrations/create_people.rb",
"features/support/db/migrations/create_posts.rb",
"features/support/db/migrations/create_robots.rb",
"features/support/db/migrations/create_taggings.rb",
"features/support/db/migrations/create_tags.rb",
"features/support/db/migrations/create_thetas.rb",
"features/support/db/mysql.rb",
"features/support/db/postgresql.rb",
"features/support/env.rb",
"features/support/lib",
"features/support/lib/generic_delta_handler.rb",
"features/support/models",
"features/support/models/alpha.rb",
"features/support/models/animal.rb",
"features/support/models/author.rb",
"features/support/models/beta.rb",
"features/support/models/box.rb",
"features/support/models/cat.rb",
"features/support/models/category.rb",
"features/support/models/comment.rb",
"features/support/models/delayed_beta.rb",
"features/support/models/developer.rb",
"features/support/models/dog.rb",
"features/support/models/extensible_beta.rb",
"features/support/models/gamma.rb",
"features/support/models/person.rb",
"features/support/models/post.rb",
"features/support/models/robot.rb",
"features/support/models/tag.rb",
"features/support/models/tagging.rb",
"features/support/models/theta.rb",
"features/support/post_database.rb",
"features/support/z.rb",
"spec/lib/thinking_sphinx/active_record/delta_spec.rb",
"spec/lib/thinking_sphinx/active_record/has_many_association_spec.rb",
"spec/lib/thinking_sphinx/active_record/scopes_spec.rb",
"spec/lib/thinking_sphinx/active_record_spec.rb",
Expand Down

0 comments on commit c735141

Please sign in to comment.