-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelastic_search_framework.gemspec
30 lines (26 loc) · 1.18 KB
/
elastic_search_framework.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'elastic_search_framework/version'
Gem::Specification.new do |spec|
spec.name = 'elastic_search_framework'
spec.version = ElasticSearchFramework::VERSION
spec.authors = ['vaughanbrittonsage']
spec.email = ['[email protected]']
spec.summary = 'A lightweight framework to for working with elastic search.'
spec.description = 'A lightweight framework to for working with elastic search.'
spec.homepage = 'https://github.com/sage/elastic_search_framework'
spec.license = 'MIT'
spec.files = Dir.glob("{bin,lib,spec}/**/**/**")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry-byebug'
spec.add_dependency 'hash_kit', '~> 0.5'
spec.add_dependency 'json'
spec.add_dependency 'connection_pool'
end