You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make possible to lazy define tasks in a namespace. The tasks are
loaded only on lookup.
Lazy definitions can be executed on purpose when using the option
--load-lazy-definitions so that `rake --tasks --load-lazy-definitions`
list all tasks including the one defined in a lazy way.
Example of lazy definitions:
```
namespace 'a' do
lazy { task 't' }
end
```
or
```
namespace 'a' do
lazy { load 'namespace_a.rake' }
end
```
0 commit comments