class Sass::CacheStores::Base

def _store(key, version, sha, contents)

Parameters:
  • contents (String) -- The contents to store.
  • sha (String) -- The sha of the sass source.
  • version (String) -- The current sass version.
  • key (String) -- The key to store the contents under
def _store(key, version, sha, contents)
  raise "#{self.class} must implement #_store."
end