0.06
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Realtime Rails log in your browser. For Rails 3.1+
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Rubyception

A realtime log viewer for Rails (released under the MIT license)


This shows a normal log entry screenshot 1

This entry has an exception. The backtrace file names are clickable and will open in MacVim. Soon support for TextMate & other editors will be added. screenshot 2

Features

  • Real-time updating of the log file using Websocket
  • Filenames in exceptions are shown as links which open in MacVim (support for TextMate and other editors to be added soon)

Installation

Add to your gemfile in the development group:

group :development do
  gem 'rubyception'
end

Run:

bundle install

Add to your config/routes.rb:

mount Rubyception::Engine => '/rubyception'

Run your rails server and go to:
http://localhost:3000/rubyception
Your log entries will appear on the rubyception page in realtime. You must be using a browser that supports Websockets.

Using in Production

Rubyception is not intended to be used in a production environment. If you need exception handling in production I recommend Airbrake, Exceptional or NewRelic.

Hotkeys

up or k Move selection up
down or j Move selection down
enter Expand selected entry
G Go to last entry
gg Go to first entry
42gg or 42G Go to 42nd entry
p Toggles between inline and nested parameters view if you have a log entry open