Skip to content

Commit

Permalink
skeleton commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Wiger committed Nov 18, 2009
0 parents commit 0543f31
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Redis::TextSearch - Use Redis to perform full text search with any type of class or data store

Sweet.
4 changes: 4 additions & 0 deletions lib/redis/text_search.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class Redis
module TextSearch
end
end
15 changes: 15 additions & 0 deletions redis-textsearch.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
spec = Gem::Specification.new do |s|
s.name = 'redis-textsearch'
s.version = '0.1.0'
s.summary = "Fast text search and word indexes using Redis"
s.description = %{Redis::TextSearch is a lightweight library that enables indexed text search from any class or data store}
s.files = Dir['lib/**/*.rb'] + Dir['spec/**/*.rb']
s.require_path = 'lib'
s.autorequire = 'redis/text_search'
s.has_rdoc = true
s.extra_rdoc_files = Dir['[A-Z]*']
s.rdoc_options << '--title' << 'Redis::TextSearch -- Fast text search using Redis'
s.author = "Nate Wiger"
s.email = "nate@wiger.org"
s.homepage = "http://github.com/nateware/redis-textsearch"
end
Empty file.

0 comments on commit 0543f31

Please sign in to comment.