Socket
Book a DemoInstallSign in
Socket

seo_friendly

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seo_friendly

0.0.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

SeoFriendly

SeoFriendly gem provides easy way to insert meta information (title, description, keywords) on almost all pages of your application. Gem extract meta information for model from it's fields or from any source you specify.

Installation

gem 'seo_friendly'

For fast gem integration run generator that copy migration files and default source config into your application. Gem use monkey patching to add new methods to ActiveRecord and new view helpers.

$ rails generate seo_friendly:install

Usage

Create your own seo source class for any model and specify information which will be used to create meta tags. Example:

# seo source class for Page model
class PageSeoSource < DefaultSeoSource

  # title information will be extracted from title field of Page instance
  def title
    instance.title
  end

  # description will be always constant for Page
  def description
    'Awesome pages of my beautiful application'
  end

  # Page model can have for example tags reference that you can use to generate keywords.
  def keywords
    instance.tags.join(' ,')
  end

end

Views

On views you can insert meta tags using helper

  = meta_tags(@page) %>

Model

To update meta information every time when you update records add to model callback:

  after_save :update_seo_attributes

Rake

If you change model source and want to update seo information for all instances of this model you can use rake task

$ rake seo_friendly:regenerate[ModelName]

TODO

  • Add tests
  • WordsSplitter is too slow, replace it with regular expression (change)
  • Fork it ( https://github.com/rossmari/seo_friendly/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

FAQs

Package last updated on 16 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.