Skip to content

Instantly share code, notes, and snippets.

@kopylovvlad
Created March 8, 2017 18:02
Show Gist options
  • Save kopylovvlad/6c2e4deb1f6e3be2bfc2c7ee616510c0 to your computer and use it in GitHub Desktop.
Save kopylovvlad/6c2e4deb1f6e3be2bfc2c7ee616510c0 to your computer and use it in GitHub Desktop.
module EsHelper
def as_indexed_json(params={})
{
title: title,
description: description,
searching: searching
}
end
def preview
if description.size > 25
description[0, 25] + '...'
else
description
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment