class Yoda::Model::Descriptions::Base

@abstract

Public Instance Methods

sort_text() click to toggle source

@abstract @return [String]

# File lib/yoda/model/descriptions/base.rb, line 14
def sort_text
  fail NotImplementedError
end
title() click to toggle source

@abstract @return [String]

# File lib/yoda/model/descriptions/base.rb, line 8
def title
  fail NotImplementedError
end
to_markdown() click to toggle source

@abstract @return [String]

# File lib/yoda/model/descriptions/base.rb, line 20
def to_markdown
  fail NotImplementedError
end