Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,19 @@ task :doit, [:first, :second, :paths] do |t, args|
end
```

## Rakefile reload

The Rakefile is only loaded when Guard is starting up or reloading. If you require the Rakefile to be reloaded (e.g. you are developing a Rake task and you want to continuously test its invocation), you're probably after something like this:

```ruby
guard 'rake', :task => 'doit', :run_on_start => false do
watch('Rakefile') {
::Rake::Task.clear
::Rake.application.load_rakefile
'Rakefile'
}
end
```

## Development

Expand Down