class Metaa::Tag

Attributes

attributes[R]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/metaa/tag.rb, line 6
def initialize(attributes = {})
  @attributes = attributes
end

Public Instance Methods

to_html() click to toggle source
# File lib/metaa/tag.rb, line 10
def to_html
  tag(:meta, @attributes)
end