Sha256: 28e6ccc6e9538f4dda6d85af8ae77112e66d3fed9f420e60a1cf8105bd317ee2
Contents?: true
Size: 1.13 KB
Versions: 12
Compression:
Stored size: 1.13 KB
Contents
require 'date' version_path = %w[../VERSION ../../VERSION].detect{|v| File.exist?(File.expand_path(v, __FILE__))} version = File.read(File.expand_path(version_path, __FILE__)).strip Gem::Specification.new do |s| s.name = 'elastics-admin' s.summary = 'Dump/load/rename/live-redindex one or more elasticsearch indices and types.' s.description = 'Provides binary and rake tasks to dump, load and optionally rename indices. Implements live-reindex with hot-swap of old code/index with new code/index.' s.homepage = 'http://elastics.github.io/elastics' s.authors = ["Domizio Demichelis"] s.email = 'dd.nexus@gmail.com' s.executables = %w[elastics-admin] s.files = `git ls-files -z`.split("\0") + %w[VERSION LICENSE] s.version = version s.date = Date.today.to_s s.required_rubygems_version = ">= 1.3.6" s.rdoc_options = %w[--charset=UTF-8] s.license = 'MIT' s.add_runtime_dependency 'elastics-client', version end
Version data entries
12 entries across 12 versions & 1 rubygems