forked from phlegx/redlics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redlics.gemspec
33 lines (27 loc) · 1.26 KB
/
redlics.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
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redlics/version'
Gem::Specification.new do |spec|
spec.name = 'redlics'
spec.version = Redlics::VERSION
spec.authors = ['Egon Zemmer']
spec.email = ['[email protected]']
spec.date = Time.now.utc.strftime('%Y-%m-%d')
spec.homepage = "http://github.com/phlegx/#{spec.name}"
spec.summary = %q{Redis analytics with tracks and counts.}
spec.description = %q{Redis analytics with tracks (using bitmaps) and counts (using buckets)
encoding numbers in Redis keys and values.}
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.test_files = Dir.glob('test/*_test.rb')
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.add_dependency 'connection_pool', '~> 2.2'
spec.add_dependency 'redis', '~> 3.2'
spec.add_dependency 'redis-namespace', '~> 1.5'
spec.add_dependency 'activesupport', '~> 4.2'
spec.add_dependency 'msgpack', '~> 0.7'
spec.add_development_dependency 'rake', '~> 11.0'
spec.add_development_dependency 'minitest', '~> 5.8'
end