-
Notifications
You must be signed in to change notification settings - Fork 6
/
waistband.gemspec
27 lines (23 loc) · 1.08 KB
/
waistband.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'waistband/version'
Gem::Specification.new do |spec|
spec.name = "waistband"
spec.version = Waistband::VERSION
spec.authors = ["David Jairala"]
spec.email = ["davidjairala@gmail.com"]
spec.description = %q{Handles configuration, index creation, quality of life, etc, of Elastic Search in Ruby}
spec.summary = %q{Configuration and sensible defaults for ElasticSearch on Ruby}
spec.homepage = "https://github.com/taskrabbit/waistband"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'activesupport', '< 7.1.0'
spec.add_dependency 'elasticsearch', '~> 6.0'
spec.add_dependency 'json'
spec.add_development_dependency "bundler", "~> 2.4"
spec.add_development_dependency "rake", "~> 10.3"
end