| Class | VideoSweeper |
| In: |
app/sweepers/video_sweeper.rb
|
| Parent: | ActionController::Caching::Sweeper |
# File app/sweepers/video_sweeper.rb, line 19
19: def self.sweep
20: Video::LANGUAGES.each do |lang|
21: FileUtils.rm(ActionController::Base.page_cache_directory+"/#{lang}/podcast.xml") if File.exists?(ActionController::Base.page_cache_directory+"/#{lang}/podcast.xml")
22: end
23: end