Method: Lifer::Entry#title

Defined in:
lib/lifer/entry.rb

#titleString

Returns the title of the entry. Every entry subclass must implement this method so that builders have access to some kind of title for each entry.

Returns:

  • (String)

Raises:

  • (NotImplementedError)


256
257
258
# File 'lib/lifer/entry.rb', line 256

def title
  raise NotImplementedError, I18n.t("shared.not_implemented_method")
end