forked from junegunn/redis-stat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis-stat.gemspec
41 lines (37 loc) · 1.71 KB
/
redis-stat.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
34
35
36
37
38
39
40
41
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/redis-stat/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Junegunn Choi"]
gem.email = ["junegunn.c@gmail.com"]
gem.description = %q{A real-time Redis monitoring tool written in Ruby}
gem.summary = %q{A real-time Redis monitoring tool written in Ruby}
gem.homepage = "https://github.com/junegunn/redis-stat"
gem.license = 'MIT'
gem.platform = 'java' if RUBY_PLATFORM == 'java'
gem.files = `git ls-files`.split("\n").reject { |f| f =~ /^screenshots/ }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "redis-stat"
gem.require_paths = ["lib"]
gem.version = RedisStat::VERSION
gem.add_runtime_dependency "ansi256", '~> 0.2.5'
gem.add_runtime_dependency "redis", '~> 3.0.2'
gem.add_runtime_dependency "tabularize", '~> 0.2.9'
gem.add_runtime_dependency "insensitive_hash", '~> 0.3.0'
gem.add_runtime_dependency "parallelize", '~> 0.4.0'
gem.add_runtime_dependency "si", '~> 0.1.4'
gem.add_runtime_dependency "sinatra", '~> 1.3.3'
gem.add_runtime_dependency "json", '~> 1.8.2'
gem.add_runtime_dependency "lps", '~> 0.2.0'
gem.add_runtime_dependency "elasticsearch", '~> 1.0.0'
gem.add_development_dependency "minitest"
gem.add_development_dependency "rake"
if RUBY_PLATFORM == 'java'
gem.add_runtime_dependency "puma", "~> 2.3.2"
gem.add_development_dependency "jruby-jars", "1.7.19"
gem.add_development_dependency "warbler", "1.4.9"
else
gem.add_runtime_dependency "thin", '~> 1.5.0'
gem.add_runtime_dependency "daemons", '~> 1.1.9'
end
end