-
Notifications
You must be signed in to change notification settings - Fork 3
/
xapit.gemspec
21 lines (17 loc) · 852 Bytes
/
xapit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = "xapit"
s.version = "0.3.0"
s.author = "Ryan Bates"
s.email = "[email protected]"
s.homepage = "http://github.com/ryanb/xapit"
s.summary = "Ruby library for interacting with the Xapian full text search engine."
s.description = "Ruby library for interacting with Xapian. Includes full text search, faceted options, spelling suggestions, and more."
s.files = Dir["{lib,spec,features,rails_generators,tasks}/**/*", "[A-Z]*", "init.rb", "install.rb", "uninstall.rb"] - ["Gemfile.lock"]
s.require_path = "lib"
s.add_dependency 'rack'
s.add_development_dependency 'rspec', '~> 2.7.0'
s.add_development_dependency 'cucumber', '~> 0.10.2'
s.add_development_dependency 'rake'
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.4"
end