-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanubis.gemspec
More file actions
31 lines (23 loc) · 904 Bytes
/
anubis.gemspec
File metadata and controls
31 lines (23 loc) · 904 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "anubis/version"
Gem::Specification.new do |s|
s.name = 'anubis'
s.version = ::Anubis::VERSION
s.platform = ::Gem::Platform::RUBY
s.authors = ['redfield', 'Tyralion']
s.email = ['info@dancingbytes.ru']
s.homepage = 'https://github.com/dancingbytes/anubis'
s.summary = 'Simple search on Sphinx for ruby/rails'
s.description = 'Sphinx (only SphinxQL support) wrapper for Ruby/Rails'
s.required_ruby_version = '>= 1.9.3'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.extra_rdoc_files = ['README.md']
s.require_paths = ['lib']
s.bindir = 'bin'
s.executables = ['anubis']
s.licenses = ['BSD']
s.add_dependency 'bundler', ['>= 1.0.0']
s.add_dependency 'mysql2', ['>= 0.3.15']
end