-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmethod_tracer.gemspec
More file actions
27 lines (22 loc) · 1.11 KB
/
method_tracer.gemspec
File metadata and controls
27 lines (22 loc) · 1.11 KB
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'method_tracer/version'
Gem::Specification.new do |spec|
spec.name = 'method_call_tracer'
spec.version = MethodTracer::VERSION
spec.authors = ['Eddie Lebow']
spec.email = ['elebow@users.noreply.github.com']
spec.summary = 'A tool that finds lines in your application that call a specified method(s)'
spec.description = 'This tool reports which lines in your application call (directly or ' \
'indirectly) a method matching a pattern you specify. Lets you find out ' \
'which lines in your application are dependent on a given gem, among ' \
'other things.'
spec.homepage = 'https://github.com/elebow/method_tracer'
spec.license = 'public domain'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.require_paths = ['lib']
spec.add_dependency 'where_is', '~> 0'
spec.add_development_dependency 'minitest', '~> 5'
end