Sha256: 78b24ae67d35caf549343249bf0bccd25d3a52d917bcd2c09380b8bb26b66e9d
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'elasticsearch/extensions/version' Gem::Specification.new do |s| s.name = "elasticsearch-extensions" s.version = Elasticsearch::Extensions::VERSION s.authors = ["Karel Minarik"] s.email = ["karel.minarik@elasticsearch.org"] s.description = %q{Extensions for the Elasticsearch Rubygem} s.summary = %q{Extensions for the Elasticsearch Rubygem} s.homepage = "" s.license = "Apache 2" s.files = `git ls-files`.split($/) s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } s.test_files = s.files.grep(%r{^(test|spec|features)/}) s.require_paths = ["lib"] s.add_dependency "ansi" unless File.exists? File.expand_path("../../elasticsearch/elasticsearch.gemspec", __FILE__) s.add_dependency "elasticsearch" end if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9' s.add_development_dependency "minitest", "~> 4.0" s.add_dependency "ruby-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius) end s.add_development_dependency "bundler", "> 1" s.add_development_dependency "rake" s.add_development_dependency "awesome_print" s.add_development_dependency "shoulda-context" s.add_development_dependency "mocha" s.add_development_dependency "turn" s.add_development_dependency "yard" s.add_development_dependency "ci_reporter" if defined?(RUBY_VERSION) && RUBY_VERSION < '1.9' s.add_development_dependency "json" end if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9' s.add_development_dependency "simplecov" s.add_development_dependency "simplecov-rcov" s.add_development_dependency "cane" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch-extensions-0.0.15 | elasticsearch-extensions.gemspec |