-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrt_sphinx.gemspec
32 lines (27 loc) · 1.09 KB
/
rt_sphinx.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
32
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'rt_sphinx'
s.version = '0.0.7'
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.authors = ['Dmitry Koprov']
s.email = ['[email protected]']
s.homepage = 'http://github.com/dkoprov/rt_sphinx/'
s.summary = %q{A tool to work with Sphinx search real time indexes}
s.description = %q{A tool for populating Sphinx search service through real time indexes.}
s.rubyforge_project = 'rt_sphinx'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_development_dependency 'rake', '>= 0.9.2'
s.add_development_dependency 'rspec', '>= 2.5.0'
s.add_development_dependency 'yard', '>= 0.7.2'
s.add_dependency 'connection_pool'
if RUBY_PLATFORM == 'java'
s.add_dependency 'jdbc-mysql', '5.1.13'
else
s.add_dependency 'mysql2', '0.3.2'
end
end