load_tracer

This gem can check the dependency files.


License
MIT
Install
gem install load_tracer -v 0.6.1

Documentation

LoadTracer

This gem can check the dependency files.

require RUBY_VERSION >= 2.7.0

Installation

gem install load_tracer

build local

clone this repository.

git clone https://github.com/siman-man/load_tracer.git

build gem.

bundle exec rake build

install gem.

gem install pkg/load_tracer-0.6.0.gem

Usage

require 'load_tracer'

report = LoadTracer.trace do
  require 'net/http'
end

pp report

dot format

require 'load_tracer'

puts LoadTracer.trace(format: :dot) { require 'prime' }
ruby example.rb | dot -Tpng -o example.png | open example.png

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the LoadTracer project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.