assemblymade/coderwall

View on GitHub
app/helpers/schema_org_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SchemaOrgHelper
  def meta_person_schema_url
    'https://schema.org/Person'
  end

  def meta_address_schema_url
    'https://schema.org/Address'
  end

  def meta_article_schema_url
    'https://schema.org/TechArticle'
  end

  def meta_comment_schema_url
    'https://schema.org/Comment'
  end
end