Darcs & tasks

Hi,
For my extension I’m using darcs as revision control system instead
of svn…the problem is that if I type:

rake radiant:extensions:gallery:install

rake execute my lib/tasks/install_taks, but also tasks under _darcs
directory…is there a way to exclude _darcs folder?
thanks in advance


Andrea F.

http://think.bigchief.it

I think you should edit the Radiant source to do that because the code
that tuns extensions rakefiles is the following:

Load any custom rakefiles from extensions

[RAILS_ROOT, RADIANT_ROOT].uniq.each do |root|
Dir[root + ‘/vendor/extensions//tasks//*.rake’].sort.each {
|ext| load ext }
end

And it doesn’t allow to exclude directories.

2007/3/30, Andrea F. [email protected]: