forked from flying-sphinx/flying-sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflying-sphinx.gemspec
39 lines (33 loc) · 1.52 KB
/
flying-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
33
34
35
36
37
38
39
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'flying_sphinx/version'
Gem::Specification.new do |s|
s.name = 'flying-sphinx'
s.version = FlyingSphinx::Version
s.authors = ['Pat Allan']
s.email = '[email protected]'
s.summary = 'Sphinx in the Cloud'
s.description = 'Hooks Thinking Sphinx into the Flying Sphinx service'
s.homepage = 'https://flying-sphinx.com'
s.extra_rdoc_files = ['README.textile']
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
s.executables = ['flying-sphinx']
s.add_runtime_dependency 'thinking-sphinx'
s.add_runtime_dependency 'riddle', ['>= 1.5.6']
s.add_runtime_dependency 'multi_json', ['>= 1.3.0']
s.add_runtime_dependency 'faraday_middleware', ['~> 0.7']
s.add_runtime_dependency 'rash', ['~> 0.3']
s.add_runtime_dependency 'pusher-client', ['~> 0.3']
s.add_development_dependency 'rake', ['~> 0.9.2']
s.add_development_dependency 'rspec', ['~> 2.11']
s.add_development_dependency 'rspec-fire', ['~> 1.1.0']
s.add_development_dependency 'yajl-ruby', ['~> 0.8.2']
s.add_development_dependency 'fakeweb', ['~> 1.3.0']
s.add_development_dependency 'fakeweb-matcher', ['~> 1.2.2']
s.post_install_message = <<-MESSAGE
If you're upgrading, you should rebuild your Sphinx setup when deploying:
$ heroku rake fs:rebuild
MESSAGE
end