public
Description: gemified mirror of the tokyotyrant ruby interface
Homepage:
Clone URL: git://github.com/careo/tokyotyrant-ruby.git
Thu Apr 09 10:51:59 -0700 2009
careo (committer)
Mon Apr 20 20:30:40 -0700 2009
tokyotyrant-ruby / tokyotyrant.gemspec
100644 19 lines (16 sloc) 0.875 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rubygems'
 
spec = Gem::Specification.new do |s|
  s.name = "tokyotyrant"
  s.version = "1.5"
  s.author "Mikio Hirabayashi"
  s.email = "mikio@users.sourceforge.net"
  s.homepage = "http://tokyocabinet.sourceforge.net/"
  s.summary = "Tokyo Tyrant: network interface of Tokyo Cabinet."
  s.description = "Tokyo Tyrant is a package of network interface to the DBM called Tokyo Cabinet. Though the DBM has high performance, you might bother in case that multiple processes share the same database, or remote processes access the database. Thus, Tokyo Tyrant is provided for concurrent and remote connections to Tokyo Cabinet. It is composed of the server process managing a database and its access library for client applications."
  s.files = [ "tokyotyrant.rb" ]
  s.require_path = "."
end
 
if $0 == __FILE__
  Gem::manage_gems
  Gem::Builder.new(spec).build
end