less and sitemap_generator don't like each other
hi, I run into errors when trying to use less and sitemap_generator gems on the same project. The cause ,as best as I can tell, seems to be that less adds a method called verbose to Object. sitemap_generator has its own method called verbose but it gets overridden by the one in the less gem.
Yes, it happens to me too.
This is already been spotted by the following two threads in http://github.com/kjvarga/sitemap_generator Issues: http://github.com/kjvarga/sitemap_generator/issues/closed#issue/14 http://github.com/kjvarga/sitemap_generator/issues/closed#issue/17
bye Luca
The way that less overrides the Object#verbose breaks the Rake API, which is what sitemap_generator uses.
You'll need to only extend certain objects, rather than all objects.
Still an issue today, about a year later!