2010-02-07 17:14:20 +00:00
|
|
|
class Nanoc3::Site
|
|
|
|
def cached(key)
|
2010-11-13 05:45:24 +00:00
|
|
|
if cached_stuff.has_key?(key)
|
|
|
|
cached_stuff[key]
|
2010-02-07 17:14:20 +00:00
|
|
|
else
|
2010-11-13 05:45:24 +00:00
|
|
|
cached_stuff[key]= yield
|
2010-02-07 17:14:20 +00:00
|
|
|
end
|
|
|
|
end
|
2010-11-13 05:45:24 +00:00
|
|
|
def cached_stuff
|
|
|
|
@cached_stuff ||= {}
|
2010-02-07 17:14:20 +00:00
|
|
|
end
|
|
|
|
end
|