-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathredlics.gemspec
33 lines (27 loc) · 1.27 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$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 = ['office@phlegx.com']
spec.date = Time.now.utc.strftime('%Y-%m-%d')
spec.homepage = "http://github.com/phlegx/#{spec.name}"
spec.summary = 'Redis analytics with tracks and counts.'
spec.description = '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.3'
spec.add_dependency 'activesupport', '>= 5.2.8'
spec.add_dependency 'connection_pool', '~> 2.2'
spec.add_dependency 'msgpack', '>= 0.7.2'
spec.add_dependency 'redis', '>= 4.2'
spec.add_dependency 'redis-namespace', '~> 1.5'
spec.add_development_dependency 'minitest', '~> 5.8'
spec.add_development_dependency 'rake', '~> 12.0'
end