No commit activity in last 3 years
No release in over 3 years
simpletrace reduces backtrace by removing path of installed libraries.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.2.0
 Project Readme
= simpletrace

* http://github.com/mame/simpletrace/tree/master

== DESCRIPTION:

simpletrace reduces backtrace by removing path of installed libraries.

== FEATURES/PROBLEMS:


== SYNOPSIS:

The original backtrace:

  $ ruby -ruri -e 'URI(nil)'
  /usr/lib/ruby/1.8/uri/common.rb:436:in `split': bad URI(is not URI?):  (URI::
  InvalidURIError)
          from /usr/lib/ruby/1.8/uri/common.rb:485:in `parse'
          from /usr/lib/ruby/1.8/uri/common.rb:608:in `URI'
          from -e:1

Do you really doubt about the standard library?
simpletrace makes you focus your bug:

  $ ruby -rsimpletrace -ruri -e 'URI(nil)'
  -e:1:in `<main>': bad URI(is not URI?): nil (URI::InvalidURIError)

== REQUIREMENTS:

None

== INSTALL:

* gem install mame-simpletrace

== LICENSE:

Copyright (c) 2009 Yusuke Endoh <mame@tsg.ne.jp>
License: Ruby's