forked from toptal/chewy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chewy.gemspec
32 lines (28 loc) · 1.36 KB
/
chewy.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chewy/version'
Gem::Specification.new do |spec|
spec.name = 'chewy'
spec.version = Chewy::VERSION
spec.authors = ['pyromaniac']
spec.email = ['[email protected]']
spec.summary = %q{Elasticsearch ODM client wrapper}
spec.description = %q{Chewy provides functionality for Elasticsearch index handling, documents import mappings and chainable query DSL}
spec.homepage = 'https://github.com/toptal/chewy'
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_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.0.0'
spec.add_development_dependency 'rspec-its', '~> 1.0.1'
spec.add_development_dependency 'rspec-collection_matchers'
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency 'database_cleaner'
spec.add_development_dependency 'elasticsearch-extensions'
spec.add_development_dependency 'rubysl', '~> 2.0' if RUBY_ENGINE == 'rbx'
spec.add_dependency 'activesupport', '>= 3.2'
spec.add_dependency 'elasticsearch', '>= 1.0.0'
end