forked from johnl/xapian-fu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxapian-fu.gemspec
31 lines (23 loc) · 964 Bytes
/
xapian-fu.gemspec
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
$:.push File.expand_path('../lib', __FILE__)
require 'xapian_fu/version'
Gem::Specification.new do |s|
s.name = 'xapian-fu'
s.version = XapianFu::VERSION
s.date = '2012-05-23'
s.rubyforge_project = "xapian-fu"
s.summary = "A Ruby interface to the Xapian search engine"
s.description = "A library to provide a more Ruby-like interface to the Xapian search engine."
s.authors = ['John Leach', 'Damian Janowski']
s.email = '[email protected]'
s.homepage = 'http://github.com/johnl/xapian-fu'
s.files = Dir.glob("lib/**/*") + Dir.glob("examples/**/*")
s.test_files = Dir.glob("spec/**/*")
s.require_paths = ["lib"]
s.rdoc_options << '--title' << 'Xapian Fu' <<
'--main' << 'README.rdoc' <<
'--line-numbers'
s.extra_rdoc_files = ["README.rdoc", "LICENSE", "CHANGELOG.rdoc"]
s.add_development_dependency("rspec", "~> 2.7.0")
s.add_development_dependency("rake")
s.add_development_dependency("rdoc")
end