Project

rake-typo

0.0
No commit activity in last 3 years
No release in over 3 years
Provides a list of possible tasks you might have meant when Rake can't find a task you're trying to run.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.5

Runtime

< 11.0.0, >= 0.8.7
~> 0.0.5
 Project Readme

No more task typos

Tired of seeing this and not knowing the exact task name?

$ rake ffoo

rake aborted!
Don't know how to build task 'ffoo'
(See full trace by running task with --trace)

Add this to your rakefile:

require "rake/typo"

Now you can get suggestions for similar task names:

$ rake ffoo

Don't know how to build task 'food:bar'

Did you mean this?

	foo

Install and use

$ gem install rake-typo

Then simply require "rake-typo" to your Rake file.

License and contributing

Released under the MIT license. See LICENSE for details.

The quickest way to get changes contributed:

  1. Visit the GitHub repository for rake-typo.
  2. Fork the repository.
  3. Check out a branch on the latest master for your change: git checkout -b master new-feature --- do not make changes on master! Make sure that anything added or changed has a test in the test/ directory. Use the existing files as examples. All tests for new/changed behaviour should pass.
  4. Send a pull request on GitHub, including a description of what you've changed.