0.0
There's a lot of open issues
A long-lived project that still receives updates
A sticky toolbar for Rails applications in development mode
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 2.0
~> 13.0

Runtime

>= 7.0
 Project Readme

DevToolbar

First Draft DevToolbar for appdev-projects beginner ergonomics in Rails applications.

Installation

Add this line to your application's Gemfile:

group :development do
  gem "dev_toolbar"
end

Then execute:

bundle install

Then, add a configuration file with the names and routes you want links for:

# config/initializers/dev_toolbar.rb

if Rails.env.development?
  DevToolbar.configure do |config|
    config.links = [
      { name: "Routes", path: "/rails/info/routes" },
      { name: "Database", path: "/rails/db" }, # rails_db gem must be installed
      { name: "ERD", path: "/erd" }, # erd.png must be in the root folder
      # etc.
    ]
  end
end

These routes will now appear on every page in your app while in development.

Updating the gem

  1. Pull request and make changes
  2. Test locally
  3. Bump lib/dev_toolbar/version.rb
  4. gem build dev_toolbar.gemspec
  5. gem push dev_toolbar-X.X.X.gem

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/firstdraft/dev_toolbar.

License

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