Sha256: 25bf32540974756ec565bfb328cb4c65bb311226b913f396f6ba003f61dec79c
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 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 = [['Ryan Biesemeyer', 'ryan@yaauie.com']] # authors_and_emails = (`sh git shortlog -sne`).lines.map do |l| # (/(?<=\t)(.+) <(.+)>\z/).match(l.chomp).last(2) # end.compact.map(&:to_a) spec.authors = authors_and_emails.map(&:first) spec.email = authors_and_emails.map(&:last) spec.summary = 'Copy the contents of one redis db to another' 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.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' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
redis-copy-0.0.1 | redis-copy.gemspec |