public
Description: ffi based ruby library to access Tokyo Cabinet and Tokyo Tyrant
Homepage: http://rufus.rubyforge.org
Clone URL: git://github.com/jmettraux/rufus-tokyo.git
rufus-tokyo / rufus-tokyo.gemspec
100644 37 lines (26 sloc) 1.104 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Gem::Specification.new do |s|
 
  s.name = 'rufus-tokyo'
  s.version = '1.0.2'
  s.authors = [
    'John Mettraux', 'Zev Blut', 'Jeremy Hinegardner', 'James Edward Gray II' ]
  s.email = 'jmettraux@gmail.com'
  s.homepage = 'http://rufus.rubyforge.org/'
  s.platform = Gem::Platform::RUBY
 
  s.summary = 'ruby-ffi based lib to access Tokyo Cabinet, Tyrant and Dystopia'
 
  s.description = %{
Ruby-ffi based lib to access Tokyo Cabinet and Tyrant.
 
The ffi-based structures are available via the Rufus::Tokyo namespace.
There is a Rufus::Edo namespace that interfaces with Hirabayashi-san's native Ruby interface, and whose API is equal to the Rufus::Tokyo one.
 
Finally rufus-tokyo includes ffi-based interfaces to Tokyo Dystopia (thanks to Jeremy Hinegardner).
}
 
  s.require_path = 'lib'
  s.test_file = 'spec/spec.rb'
  s.has_rdoc = true
  s.extra_rdoc_files = %w[ README.rdoc CHANGELOG.txt CREDITS.txt ]
  s.rubyforge_project = 'rufus'
 
  #%w{ ffi }.each do |d|
  # s.requirements << d
  # s.add_dependency(d)
  #end
 
  s.files = Dir['lib/**/*.rb'] + Dir['*.txt'] - [ 'lib/tokyotyrant.rb' ]
end