forked from nrk/redis-rdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis-rdb.gemspec
30 lines (22 loc) · 891 Bytes
/
redis-rdb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'rdb/version'
Gem::Specification.new do |s|
s.name = 'redis-rdb'
s.version = RDB::VERSION
s.homepage = 'https://github.com/nrk/redis-rdb'
s.license = 'MIT'
s.summary = 'A set of utilities to handle Redis .rdb files.'
s.description = <<-EOS
This library provides a set of modules and classes that make it easy to handle
binary database dumps generated by Redis (.rdb files).
EOS
s.authors = ['Daniele Alessandri']
s.email = ['[email protected]']
s.required_ruby_version = '>= 1.9.0'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.add_development_dependency('rake')
s.add_development_dependency('cutest')
end