xspond-xapian-ruby 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +19 -0
- data/README.textile +5 -0
- data/ext/extconf.rb +27 -0
- data/ext/xapian_wrap.cc +25789 -0
- data/ext/xapian_wrap.h +65 -0
- data/lib/xapian.rb +264 -0
- data/tests/smoketest.rb +204 -0
- metadata +61 -0
metadata
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: xspond-xapian-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: "0.1"
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- William Weidendorf
|
8
|
+
- David Genord II
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2009-03-10 00:00:00 -07:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: xapian-ruby is an unofficial gem version of the xapian ruby bindings provided by the xapian project
|
18
|
+
email:
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions:
|
22
|
+
- ext/extconf.rb
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- README.textile
|
27
|
+
- LICENSE
|
28
|
+
- ext/extconf.rb
|
29
|
+
- ext/xapian_wrap.cc
|
30
|
+
- ext/xapian_wrap.h
|
31
|
+
- lib/xapian.rb
|
32
|
+
- tests/smoketest.rb
|
33
|
+
has_rdoc: true
|
34
|
+
homepage: http://github.com/xspond/xapian-ruby
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options:
|
37
|
+
- --charset=UTF-8
|
38
|
+
require_paths:
|
39
|
+
- ext
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: "0"
|
46
|
+
version:
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: "0"
|
52
|
+
version:
|
53
|
+
requirements: []
|
54
|
+
|
55
|
+
rubyforge_project:
|
56
|
+
rubygems_version: 1.2.0
|
57
|
+
signing_key:
|
58
|
+
specification_version: 2
|
59
|
+
summary: Ruby bindings for xapian
|
60
|
+
test_files:
|
61
|
+
- tests/smoketest.rb
|