Sha256: 07e082e65d572f86a718946cf46369e135007671a349ed139510f29c4c5a45c7

Contents?: true

Size: 1.49 KB

Versions: 8

Compression:

Stored size: 1.49 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'elasticity/version'

Gem::Specification.new do |spec|
  spec.name          = "es-elasticity"
  spec.version       = Elasticity::VERSION
  spec.authors       = ["Rodrigo Kochenburger"]
  spec.email         = ["rodrigo@doximity.com"]
  spec.summary       = %q{ActiveModel-based library for working with Elasticsearch}
  spec.description   = %q{Elasticity provides a higher level abstraction on top of [elasticsearch-ruby](https://github.com/elasticsearch/elasticsearch-ruby) gem}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  # spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.executables   = []
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.7"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.1.0"
  spec.add_development_dependency "simplecov", "~> 0.7.1"
  spec.add_development_dependency "oj"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "codeclimate-test-reporter"
  spec.add_development_dependency "redis"

  spec.add_dependency "activesupport", ">= 4.0.0", "< 6"
  spec.add_dependency "activemodel",   ">= 4.0.0", "< 6"
  spec.add_dependency "elasticsearch", ">= 1.0"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
es-elasticity-0.12.0 elasticity.gemspec
es-elasticity-0.11.5 elasticity.gemspec
es-elasticity-0.11.1 elasticity.gemspec
es-elasticity-0.9.0 elasticity.gemspec
es-elasticity-0.8.4 elasticity.gemspec
es-elasticity-0.8.3 elasticity.gemspec
es-elasticity-0.8.2 elasticity.gemspec
es-elasticity-0.8.1 elasticity.gemspec