Sha256: f8896ae060ed27ee1a7695ed4bbf5e37c45659b87966cf70bef5d493c827b995

Contents?: true

Size: 1.43 KB

Versions: 7

Compression:

Stored size: 1.43 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 "codeclimate-test-reporter"
  spec.add_development_dependency "redis"

  spec.add_dependency "activesupport", "~> 4.0"
  spec.add_dependency "activemodel",   "~> 4.0"
  spec.add_dependency "elasticsearch", "~> 1.0.5"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
es-elasticity-0.3.6 elasticity.gemspec
es-elasticity-0.3.5 elasticity.gemspec
es-elasticity-0.3.4 elasticity.gemspec
es-elasticity-0.3.3 elasticity.gemspec
es-elasticity-0.3.2 elasticity.gemspec
es-elasticity-0.3.1 elasticity.gemspec
es-elasticity-0.3.0 elasticity.gemspec