forked from tmm1/rbtrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrbtrace.gemspec
More file actions
31 lines (21 loc) · 802 Bytes
/
rbtrace.gemspec
File metadata and controls
31 lines (21 loc) · 802 Bytes
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
# frozen_string_literal: true
require File.expand_path('../lib/rbtrace/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'rbtrace'
s.version = RBTracer::VERSION
s.homepage = 'http://github.com/tmm1/rbtrace'
s.authors = 'Aman Gupta'
s.email = 'aman@tmm1.net'
s.require_paths = ['lib', 'ext']
s.files = `git ls-files`.split("\n")
s.extensions = 'ext/extconf.rb'
s.bindir = 'bin'
s.executables << 'rbtrace'
s.add_dependency 'ffi', '>= 1.0.6'
s.add_dependency 'optimist', '>= 3.0.0'
s.add_dependency 'msgpack', '>= 0.4.3'
s.add_development_dependency "rake", "~> 10.0"
s.license = "MIT"
s.summary = 'rbtrace: like strace but for ruby code'
s.description = 'rbtrace shows you method calls happening inside another ruby process in real time.'
end