rubyist / guard-rake

guard-rake runs a rake task when files change
MIT License
94 stars 32 forks source link

Use Rake methods to initialize and load Rakefile #11

Closed jballanc closed 12 years ago

jballanc commented 12 years ago

Rake has a convention of automatically loading tasks defined in any *.rake files under the ./rakelib directory. This change uses Rake's internal mechanism for loading a Rakefile which respects this convention.

rubyist commented 12 years ago

Thanks!