Sha256: 4a46fff605d099bd4129f8f9a66ec464a33bfd3669e282e0f9ab7f79b535e3b6

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

# encoding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redis-copy/version'

Gem::Specification.new do |spec|
  spec.name          = 'redis-copy'
  spec.version       = RedisCopy::VERSION

  authors_and_emails = (`git shortlog -sne`).lines.map do |l|
    (/(?<=\t)(.+) <(.+)>\z/).match(l.chomp).to_a.last(2)
  end.compact.map(&:to_a)

  spec.authors       = authors_and_emails.map(&:first)
  spec.email         = ['redis-copy@yaauie.com']
  spec.summary       = 'Copy the contents of one redis db to another'
  spec.description   = 'A command-line utility built for copying the ' +
                       'contents of one redis db to another over a ' +
                       'network. Supports all data types, persists ttls, ' +
                       'and attempts to be as efficient as possible.'
  spec.homepage      = 'https://github.com/yaauie/redis-copy'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(/^bin\//) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(/^(test|spec|features)\//)
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 1.9.3'

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec',   '~> 2.14'

  spec.add_runtime_dependency     'redis'
  spec.add_runtime_dependency     'activesupport'
  spec.add_runtime_dependency     'implements', '~> 0.0.2'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redis-copy-1.0.0.rc.0 redis-copy.gemspec