Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
ruby-bindex /
[ HOME SHELL ]
Name
Size
Permission
Action
README.md
1.63
KB
-rw-r--r--
changelog.Debian.gz
726
B
-rw-r--r--
copyright
1.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# Skiptrace [](https://travis-ci.org/gsamokovarov/skiptrace) When Ruby raises an exception, it leaves you a backtrace to help you figure out where did the exception originated in. Skiptrace gives you the bindings as well. This can help you introspect the state of the Ruby program when at the point the exception occurred. ## Usage **Do not** use this gem on production environments. The performance penalty isn't worth it anywhere outside of development. ### API Skiptrace defines the following API: #### Exception#bindings Returns all the bindings up to the one in which the exception originated in. #### Exception#binding_locations Returns an array of `Skiptrace::Location` objects that are like [`Thread::Backtrace::Location`](https://ruby-doc.org/core-2.6.3/Thread/Backtrace/Location.html) but also carry a `Binding` object for that frame through the `#binding` method. #### Skiptrace.current_bindings Returns all of the current Ruby execution state bindings. The first one is the current one, the second is the caller one, the third is the caller of the caller one and so on. ## Support ### CRuby CRuby 2.5.0 and above is supported. ### JRuby To get the best support, run JRuby in interpreted mode. ```bash export JRUBY_OPTS=--dev ``` Only JRuby 9k is supported. ### Rubinius Internal errors like `ZeroDevisionError` aren't caught. ## Credits Thanks to John Mair for his work on binding_of_caller, which is a huge inspiration. Thanks to Charlie Somerville for better_errors where the idea comes from. Thanks to Koichi Sasada for the debug inspector API in CRuby.
Close