Sha256: 4db0f932f441e30077be9260d3e2362dec28a4d3c9b9913598807749bc7d41dd

Contents?: true

Size: 599 Bytes

Versions: 2

Compression:

Stored size: 599 Bytes

Contents

# frozen_string_literal: true

KManager.action :categories do
  action do
    CategoryDirector
      .init(k_builder)
      .category(:array      , 'Array handling routines, eg. join, join_prefix, join_post')
      .category(:case       , 'Tokenize and apply case and/or separator')
      .category(:comparison , 'Comparison helpers, eg. or, and, equal, not equal, less than, greater than etc.')
      .category(:inflection , 'Inflection handling routines, eg. pluralize, singular, ordinalize')
      .category(:misc       , 'Miscellaneous cmdlets')
      .save_categories
      .generate
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cmdlet-0.9.0 .builders/generators/20-categories.rb
cmdlet-0.8.0 .builders/generators/20-categories.rb