Method: BootstrapEmail::SassCache#compile

Defined in:
lib/bootstrap-email/sass_cache.rb

#compileObject


23
24
25
26
27
28
29
# File 'lib/bootstrap-email/sass_cache.rb', line 23

def compile
  cache_path = "#{cache_dir}/#{checksum}/#{type}.css"
  unless cached?(cache_path)
    compile_and_cache_scss(cache_path)
  end
  File.read(cache_path)
end