2 3 4 5 6 7 8 9 10
# File 'app/helpers/blog/blog_helper.rb', line 2 def blog(label=nil) @_blogs ||= {} if label @_blogs[label] ||= Blog::Blog.get(label) else @_blogs[:default] ||= Blog::Blog.first end end