-
Notifications
You must be signed in to change notification settings - Fork 9
/
search_flip.gemspec
35 lines (29 loc) · 1.32 KB
/
search_flip.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "search_flip/version"
Gem::Specification.new do |spec|
spec.name = "search_flip"
spec.version = SearchFlip::VERSION
spec.authors = ["Benjamin Vetter"]
spec.email = ["[email protected]"]
spec.description = "Full-Featured Elasticsearch Ruby Client with a Chainable DSL"
spec.summary = "Full-Featured Elasticsearch Ruby Client with a Chainable DSL"
spec.homepage = "https://github.com/mrkamel/search_flip"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/mrkamel/search_flip"
spec.metadata["changelog_uri"] = "https://github.com/mrkamel/search_flip/blob/master/CHANGELOG.md"
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.post_install_message = <<~MESSAGE
Thanks for using search_flip!
When upgrading to 3.x, please check out
https://github.com/mrkamel/search_flip/blob/master/UPDATING.md
MESSAGE
spec.add_dependency "hashie"
spec.add_dependency "http"
spec.add_dependency "json"
spec.add_dependency "oj"
spec.add_dependency "ruby2_keywords"
end