Meta Tags Versions Save

Search Engine Optimization (SEO) for Ruby on Rails applications.

v2.11.1

5 years ago

Features:

  • Rails 6 is officially supported.

v2.11.0

5 years ago

Features:

  • Added a configuration option minify_output to remove new line characters between meta tags (182)
  • Title, description, and keywords can be an object responding to #to_str (183)

Bugfixes:

  • Truncate title before escaping HTML characters (180)

v2.10.0

6 years ago

Features:

  • Allow MetaTagsCollection#update to receive an object (169)

v2.9.0

6 years ago

Features:

  • Added ability to add index robots meta tag (thanks to @rafallo)

v2.8.0

6 years ago

Features:

  • Added noarchive support.

Changes:

  • Updated default description size to 300 as a new recommended truncation limit.

v2.7.1

6 years ago

Changes:

  • Properly generate Open Graph meta tags for object types that fail to provide a proper scope (e.g. restaurant:contact_info metadata for restaurant:restaurant object type).

Bugfixes:

  • Description truncated to empty string and removed from meta tags when limit is set to 0 (while documentation suggests we should remove limits in this case).

v2.7.0

6 years ago

Changes:

  • Generate open meta tags (<meta ... >) instead of closed meta tags (<meta ... />) by default, which is . Added a new option to switch back to self-closing meta tags, which are valid in HTML5, but unnecessary.

v2.6.0

6 years ago

Features:

  • Optionally avoid downcasing keywords
  • Added Rails generator to create an initializer with the default settings.
  • Added a configuration option truncate_site_title_first which enables site title truncation when title limit is reached.
  • When Time, Date, or DateTime passed as a meta tag value, it will be formatted according to ISO 8601.

Bugfixes:

  • When title limit reached with reverse set to true, properly truncate the last item of the title array instead of the first one.
  • Do not merge title and site title for OpenGraph, site title is available for reference as :site, and full title as :full_title.

Changes:

v1.1.0

6 years ago

Features:

  • Added ability to specify title as an Array of parts
  • Added helper for noindex
  • Added nofollow meta tag support

Bugfixes:

  • Fixed Rails 2.3 deprecation warnings

v1.1.1

6 years ago

Features:

  • Added support for canonical link element
  • Added YARD documentation