Method: Refile::Attacher#get

Defined in:
lib/refile/attacher.rb

#getObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



28
29
30
31
32
33
34
# File 'lib/refile/attacher.rb', line 28

def get
  if cached?
    cache.get(cache_id)
  elsif id and not id == ""
    store.get(id)
  end
end