Home

Awesome

Byebug

Version Tidelift Gitter

Byebug is a simple to use and feature rich debugger for Ruby. It uses the TracePoint API for execution control and the Debug Inspector API for call stack navigation. Therefore, Byebug doesn't depend on internal core sources. Byebug is also fast because it is developed as a C extension and reliable because it is supported by a full test suite.

The debugger permits the ability to understand what is going on inside a Ruby program while it executes and offers many of the traditional debugging features such as:

For enterprise

Byebug for enterprise is available via the Tidelift Subscription. Learn more.

Build Status

ubuntu windows

Requirements

Install

gem install byebug

Alternatively, if you use bundler:

bundle add byebug --group "development, test"

Usage

From within the Ruby code

Simply include byebug wherever you want to start debugging and the execution will stop there. For example, if you were debugging Rails, you would add byebug to your code:

def index
  byebug
  @articles = Article.find_recent
end

And then start a Rails server:

bin/rails s

Once the execution gets to your byebug command, you will receive a debugging prompt.

From the command line

If you want to debug a Ruby script without editing it, you can invoke byebug from the command line.

byebug myscript.rb

Byebug's commands

CommandAliasesSubcommands
backtracebt w where
breakb
catchcat
conditioncond
continuec cont
continue!c! cont!
debug
deletedel
disabledisbreakpoints display
displaydisp
down
edited
enableenbreakpoints display
finishfin
framef
helph
historyhist
infoiargs breakpoints catch display file line program
interruptint
irb
kill
listl
methodminstance
nextn
pry
quitq
quit!q!
restart
savesa
setautoirb autolist autopry autosave basename callstyle fullpath histfile histsize linetrace listsize post_mortem savefile stack_on_error width
showautoirb autolist autopry autosave basename callstyle fullpath histfile histsize linetrace listsize post_mortem savefile stack_on_error width
skipsk
sourceso
steps
threadthcurrent list resume stop switch
tracevartr
undisplayundisp
untracevaruntr
up
varvall constant global instance local

Semantic Versioning

Byebug attempts to follow semantic versioning and bump major version only when backwards incompatible changes are released. Backwards compatibility is targeted to pry-byebug and any other plugins relying on byebug.

Getting Started

Read byebug's markdown guide to get started. Proper documentation will be eventually written.

Related projects

Contribute

See Getting Started with Development.

Funding

Subscribe to Tidelift to ensure byebug stays actively maintained, and at the same time get licensing assurances and timely security notifications for your open source dependencies.

You can also help byebug by leaving a small (or big) tip through Liberapay.

Security contact information

Please use the Tidelift security contact to report a security vulnerability. Tidelift will coordinate the fix and disclosure.

Credits

Everybody who has ever contributed to this forked and reforked piece of software, especially: