Sha256: 19898b1b1cb1ebb3b5f6a19fb49c17127c3d201400eff5276611fd21823facb9

Contents?: true

Size: 965 Bytes

Versions: 3

Compression:

Stored size: 965 Bytes

Contents

def categories
  return @categories unless @categories.nil?

  
  result = KDoc.model :document do
    table :rows do
      fields :name, :description

      row :case               , "Tokenize and apply case and/or separator"
      row :comparison         , "Comparison helpers, eg. or, and, equal, not equal, less than, greater than etc."
      row :inflection         , "Inflection handling routines, eg. pluralize, singular, ordinalize"
      row :string             , "String handling helpers"

      row :a_array            , "Array handling routines, eg. join, join_prefix, join_post"
      row :a_transform        , "Tokenize and apply case and/or separator"
      row :a_comparison       , "Comparison helpers, eg. or, and, equal, not equal, less than, greater than etc."
      row :a_inflection       , "Inflection handling routines, eg. pluralize, singular, ordinalize"
    end
  end
  
  @categories = result.raw_data_struct.rows
end
@categories = nil

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cmdlet-0.0.6 .builders/documents/categories.rb
cmdlet-0.0.5 .builders/documents/categories.rb
cmdlet-0.0.4 .builders/documents/categories.rb