searchkick.gemspec
1.16 KB
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "searchkick/version"
Gem::Specification.new do |spec|
spec.name = "searchkick"
spec.version = Searchkick::VERSION
spec.authors = ["Andrew Kane"]
spec.email = ["andrew@chartkick.com"]
spec.description = "Intelligent search made easy"
spec.summary = "Searchkick learns what your users are looking for. As more people search, it gets smarter and the results get better. It’s friendly for developers - and magical for your users."
spec.homepage = "https://github.com/ankane/searchkick"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features|benchmark)/})
spec.require_paths = ["lib"]
spec.add_dependency "activemodel", ">= 4.2"
spec.add_dependency "elasticsearch", ">= 5"
spec.add_dependency "hashie"
spec.add_development_dependency "bundler"
spec.add_development_dependency "minitest"
spec.add_development_dependency "rake"
end