I would like webgen to copy all files that's not handled to the output
directory. Is there an easy way to do this?
- Zoxc
_______________________________________________
webgen-users mailing list
webgen...@rubyforge.org
http://rubyforge.org/mailman/listinfo/webgen-users
This is not possible. You will have to tell the CopyHandler the files or
the needed file patterns that should be copied. For example, you could
add the following to your config.yaml to copy additionally copy
all .pdf files:
patterns:
Copy:
add: [**/*.pdf]
-- Thomas