Skip to content

Instantly share code, notes, and snippets.

@bryanaknight
Created February 24, 2016 18:08
Show Gist options
  • Save bryanaknight/f418f03d68a44226ddde to your computer and use it in GitHub Desktop.
Save bryanaknight/f418f03d68a44226ddde to your computer and use it in GitHub Desktop.
module GitHub
class Cache
def fetch(*opts)
opts[:cache_key].prepend current_tenant.id
super(opts)
end
def get(*opts)
opts[:cache_key].prepend current_tenant.id
super(opts)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment