Commit b7e8d430035a3c2fc03a6a5159be0ba7b44da838

Authored by Leandro Santos
1 parent 555c63fe

create cache folder on initializer

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
config/initializers/dbm_private_files.rb 0 → 100644
... ... @@ -0,0 +1,2 @@
  1 +path = File.join(Rails.root,'cache')
  2 +FileUtils.mkdir(path) unless File.exists?(path)
... ...