-
Notifications
You must be signed in to change notification settings - Fork 465
Expand file tree
/
Copy paththinking-sphinx.gemspec
More file actions
42 lines (35 loc) · 1.67 KB
/
thinking-sphinx.gemspec
File metadata and controls
42 lines (35 loc) · 1.67 KB
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
40
41
42
# frozen_string_literal: true
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |s|
s.name = 'thinking-sphinx'
s.version = '6.0.0'
s.platform = Gem::Platform::RUBY
s.authors = ["Pat Allan"]
s.email = ["pat@freelancing-gods.com"]
s.homepage = 'https://pat.github.io/thinking-sphinx/'
s.summary = 'A smart wrapper over Sphinx for ActiveRecord'
s.description = %Q{An intelligent layer for ActiveRecord (via Rails and Sinatra) for the Sphinx full-text search tool.}
s.license = 'MIT'
s.metadata['homepage_uri'] = s.homepage
s.metadata['source_code_uri'] = 'https://github.com/pat/thinking-sphinx'
s.metadata['changelog_uri'] = 'https://github.com/pat/thinking-sphinx/blob/develop/CHANGELOG.markdown'
s.metadata['rubygems_mfa_required'] = 'true'
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.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'activerecord', '>= 6.1.0'
s.add_runtime_dependency 'joiner', '>= 0.6.0'
s.add_runtime_dependency 'middleware', '>= 0.1.0'
s.add_runtime_dependency 'innertube', '>= 1.1.0'
s.add_runtime_dependency 'riddle', '~> 2.4'
s.add_development_dependency 'appraisal', '~> 1.0.2'
s.add_development_dependency 'combustion', '~> 1.1'
s.add_development_dependency 'database_cleaner', '~> 2.0.2'
s.add_development_dependency 'rspec', '~> 3.12.0'
s.add_development_dependency 'rspec-retry', '~> 0.5.6'
end