Module: SeoFriendly::ViewHelper
- Defined in:
- lib/seo_friendly/view_helper.rb
Instance Method Summary collapse
Instance Method Details
#meta_container(instance) ⇒ Object
13 14 15 |
# File 'lib/seo_friendly/view_helper.rb', line 13 def (instance) SeoSearcher.new(instance.id, instance.class.name).search || SeoCreator.new(instance).create end |
#meta_tags(instance) ⇒ Object
8 9 10 11 |
# File 'lib/seo_friendly/view_helper.rb', line 8 def (instance) container = SeoSearcher.new(instance.id, instance.class.name).search || SeoCreator.new(instance).create MetaRenderer.render(container, self) end |