Sha256: 75ae964a74a6cd15247379cae95f6937630f3caf2589cb400cf09f961da76d97

Contents?: true

Size: 1.15 KB

Versions: 2

Compression:

Stored size: 1.15 KB

Contents

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'
  spec.description   = 'This tool wraps every specified method with some logging statements ' \
                       'that record the call stack, allowing you to see exactly which lines in ' \
                       'your application make calls to methods in question. The specified ' \
                       'methods can constitute all methods defined in a certain gem.'
  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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
method_call_tracer-1.0.0 method_tracer.gemspec
method_call_tracer-0.2.0 method_tracer.gemspec