whistlepig 0.1

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: whistlepig
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ version: "0.1"
9
+ platform: ruby
10
+ authors:
11
+ - William Morgan
12
+ autorequire:
13
+ bindir: bin
14
+ cert_chain: []
15
+
16
+ date: 2011-02-08 21:42:39 -08:00
17
+ default_executable:
18
+ dependencies: []
19
+
20
+ description: Whistlepig is a minimalist realtime full-text search index. Its goal is to be as small and minimally-featured as possible, while still remaining useful, performant and scalable to large corpora. If you want realtime full-text search without the frills, Whistlepig may be for you.
21
+ email: wmorgan-whistlepig-gemspec@masanjin.net
22
+ executables: []
23
+
24
+ extensions:
25
+ - ext/whistlepig/extconf.rb
26
+ extra_rdoc_files:
27
+ - README
28
+ - ext/whistlepig/whistlepigc.c
29
+ files:
30
+ - README
31
+ - ext/whistlepig/extconf.rb
32
+ - lib/whistlepig.rb
33
+ - ext/whistlepig/query-parser.lex.h
34
+ - ext/whistlepig/entry.h
35
+ - ext/whistlepig/whistlepigc.c
36
+ - ext/whistlepig/stringmap.c
37
+ - ext/whistlepig/tokenizer.lex.h
38
+ - ext/whistlepig/whistlepig.h
39
+ - ext/whistlepig/error.c
40
+ - ext/whistlepig/stringmap.h
41
+ - ext/whistlepig/query-parser.lex.c
42
+ - ext/whistlepig/defaults.h
43
+ - ext/whistlepig/tokenizer.lex.c
44
+ - ext/whistlepig/termhash.c
45
+ - ext/whistlepig/query-parser.h
46
+ - ext/whistlepig/index.c
47
+ - ext/whistlepig/stringpool.c
48
+ - ext/whistlepig/query.h
49
+ - ext/whistlepig/query-parser.c
50
+ - ext/whistlepig/stringpool.h
51
+ - ext/whistlepig/mmap-obj.c
52
+ - ext/whistlepig/search.c
53
+ - ext/whistlepig/termhash.h
54
+ - ext/whistlepig/query.c
55
+ - ext/whistlepig/query-parser.tab.h
56
+ - ext/whistlepig/khash.h
57
+ - ext/whistlepig/query-parser.tab.c
58
+ - ext/whistlepig/entry.c
59
+ - ext/whistlepig/index.h
60
+ - ext/whistlepig/segment.h
61
+ - ext/whistlepig/mmap-obj.h
62
+ - ext/whistlepig/segment.c
63
+ - ext/whistlepig/search.h
64
+ - ext/whistlepig/error.h
65
+ has_rdoc: true
66
+ homepage: http://masanjin.net/whistlepig
67
+ licenses: []
68
+
69
+ post_install_message:
70
+ rdoc_options:
71
+ - -c
72
+ - utf8
73
+ - --main
74
+ - README
75
+ - --title
76
+ - Whistlepig
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ none: false
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ segments:
85
+ - 0
86
+ version: "0"
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ segments:
93
+ - 0
94
+ version: "0"
95
+ requirements: []
96
+
97
+ rubyforge_project:
98
+ rubygems_version: 1.3.7
99
+ signing_key:
100
+ specification_version: 3
101
+ summary: a minimalist realtime full-text search index
102
+ test_files: []
103
+