Skip to content
Snippets Groups Projects
Forked from PortalMEC / portalmec
2701 commits behind the upstream repository.
builder.rb 169 B
class Builder

  protected

  def self.cache_key(rid, last_modified)
    last_modified = Time.at(0).to_s if last_modified.nil?

    rid + '/' + last_modified
  end

end