wvanbergen / scoped_search

Easily search you ActiveRecord models with a simple query language using a named scope.

This URL has Read+Write access

scoped_search / scoped_search.gemspec
100644 15 lines (12 sloc) 0.947 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Gem::Specification.new do |s|
  s.name = 'scoped_search'
  s.version = '0.2.0'
  s.date = '2008-09-13'
  
  s.summary = "A Rails plugin to search your models using a named_scope"
  s.description = "Scoped search makes it easy to search your ActiveRecord-based models. It will create a named scope according to a provided query string. The named_scope can be used like any other named_scope, so it can be cchained or combined with will_paginate."
  
  s.authors = ['Willem van Bergen', 'Wes Hays']
  s.email = ['willem@vanbergen.org', 'weshays@gbdev.com']
  s.homepage = 'http://github.com/wvanbergen/scoped_search/wikis'
  
  s.files = %w(LICENSE README.rdoc Rakefile TODO init.rb lib lib/scoped_search lib/scoped_search.rb lib/scoped_search/query_language_parser.rb test test/query_language_test.rb test/search_for_test.rb test/tasks.rake test/test_helper.rb)
  s.test_files = %w(test/query_language_test.rb test/search_for_test.rb)
end