Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.19 KB

README.md

File metadata and controls

34 lines (25 loc) · 1.19 KB

Rakeleak Build Status Gem Version Code Climate

Helps you search & run your Rake tasks from Rails (3.2+) application. It:

  • Shows all the available Rake tasks;
  • Allows you to search by task name and description;
  • And run any task you want;
  • Shows the task output if any;
  • Shows the error message and even stacktrace if the task was failed.

Getting Started

Rakeleak works only with Rails 3.2 and higher. You can add it to the development group in your Gemfile like this:

group :development do
  gem 'rakeleak'
end

Run bundle install to install it. Then mount it adding the following to your application's config/routes.rb:

mount Rakeleak::Engine, at: "/rakeleak"

In Action

Just go to http://localhost:3000/rakeleak/tasks.

This is how it feels in action: Rakeleak in Action

License

MIT License.