Module: Metaa::Concern
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/metaa/concern.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
- #meta ⇒ Object
-
#meta_class ⇒ Class
Infers the meta class to be used by #meta (e.g. ‘Product` maps to `ProductMeta`).
- #meta_tags ⇒ Object
Instance Method Details
#meta ⇒ Object
5 6 7 |
# File 'lib/metaa/concern.rb', line 5 def @meta ||= .new(self) end |
#meta_class ⇒ Class
Infers the meta class to be used by #meta (e.g. ‘Product` maps to `ProductMeta`).
14 15 16 |
# File 'lib/metaa/concern.rb', line 14 def self.class. end |
#meta_tags ⇒ Object
9 10 11 |
# File 'lib/metaa/concern.rb', line 9 def .to_html end |