-
Notifications
You must be signed in to change notification settings - Fork 11
/
rbkit.gemspec
36 lines (29 loc) · 1.12 KB
/
rbkit.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
# -*- encoding: utf-8 -*-
GEM_NAME = "rbkit"
lib = File.expand_path("../lib", __FILE__)
$: << lib unless $:.include?(lib)
require "rbkit/version"
Gem::Specification.new do |s|
s.name = GEM_NAME
s.version = Rbkit::VERSION
if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0")
end
s.required_ruby_version = '>= 2.1.0'
s.authors = ["Hemant Kumar", "Emil Soman", "Kashyap"]
s.description = %q{
A Ruby profiler for the rest of us, Rbkit plugs into a Ruby process, and taps
realtime data to be sent over the network. We use Msgpack for achieving
network transport.
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.extensions = 'ext/extconf.rb'
s.require_paths = ["lib"]
s.homepage = "https://rbkit.c9s.dev/"
s.licenses = ["MIT"]
s.summary = "Ruby profiler for the rest of us"
s.add_development_dependency("rspec", "~> 3.0.0")
s.add_development_dependency("rake", "~> 10.3.2")
end