0.01
The project is in a healthy, maintained state
Devtools is a set of tools to help you develop your Rails application.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 2.3, >= 2.3.1
>= 1.1.2, < 3
>= 7.1
~> 2.6, >= 2.6.12
 Project Readme

Rails Devtools

Rails Devtools is a set of "quality of life" tools for your rails project, distributed as a rails engine. This is inspired by the likes of Nuxt Devtools, Laravel Telescope...

This gem is meant to be only used in development, and cannot work at all in production.

Important

The gem is an alpha version. Is has been tested on several Rails projects from Rails 7.1 to Rails 8.0. It should work on many projects but it could also break easily if your project has some tricky stuff I didn't think about. If you encounter a bug, please create an issue, I'll do my best to fix it.


Installation

  • Add the gem to your Gemfile
  gem 'rails_devtools, group: :development'
  • Mount the engine in your routes
 mount RailsDevtools::Engine => "/devtools"
  • Update the bundle
bundle install
  • Go to http://localhost:3000/devtools



Screenshots

Expand to see more screnshots

devtools_database_tables
devtools_gems devtools_image_assets devtools_routes devtools_routes_responsive devtools_routes_details_responsive

Features

Rails Devtools are fully responsive. I think of them as a companion to my editing efforts and I want to be able to put them next to my IDE.

Database tables

  • List all your database tables along with their columns and indexes.
  • Search for tables or columns

Routes

  • List all your application routes
  • Display details about it, along with helpful actions and snippets
  • Warn if a route is not linked to a controller / action (details provide more information)
  • Search for routes by name

Image assets

Since there are quite a few asset pipelines in the rails ecosystem, Rails Devtools detects which one is used and adapts its behavior to it. It supports Propshaft, Sprockets, Shakapacker, JS-Bundling-Rails and Vite-Rails.

  • list image assets in your codebase
  • Display information about them, along with helpful actions and snippets
  • Search for images by name

Gems

  • list gems in your bundle
  • display their summary
  • display links to their code source, website...
  • display outdated gems along with information about the last version
  • search for gems by name

Note

Most of those features are starting points. There are many ways to get a better grasp of a rails codebase. I have some in mind but if you happen to have ideas, feel free to share them in the discussions!



Philosophy

As developers, we spend much of our time looking at walls of text. Our codebase does not provide any information architecture, besides classes or methods. There is no high level view of the project, and most of the tooling is either a bunch of commands to run or a script found on stackoverflow.

Rails, as a framework, knows many things about our project. This might seem obvious but it knows how to match a route and a controller, what path you need to write to use an image, or what scopes are defined on a model.

When you run rails s, all those informations are available. But they are hidden behind the mysteries of ActiveRecord, Rails.application and so on.

This is why I believe that it makes a lot of sense to provide tools that surface these informations when needed, in a friendly way.



License

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