Guest User

Untitled

a guest
Feb 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. module Waves
  2. module Layers
  3. module Cache
  4.  
  5. module FileCache
  6.  
  7. def self.included(app)
  8. require 'layers/cache/filecache/filecache-ipi'
  9.  
  10. if Waves.cache.nil?
  11. Waves.cache = Waves::Layers::Cache::FileCache::FileCacheIPI.new( Waves.config.cache )
  12. end
  13.  
  14. end
  15. end
  16.  
  17. end
  18. end
  19. end
Add Comment
Please, Sign In to add comment