class Viperaptor::CatalogTemplateSearchHelper

Provides the functionality to search templates, in catalogs

Public Instance Methods

search_templates_in_a_catalog(catalog_path, search_term) click to toggle source

Finds out all of the templates located in a catalog

@param catalog_path [Pathname] The path to a template catalog

@return [Array] An array with template names

# File lib/viperaptor/template/helpers/catalog_template_search_helper.rb, line 11
def search_templates_in_a_catalog(catalog_path, search_term)
  template_names = []

  catalog_path.children.select { |child|
    File.directory?(child) && child.split.last.to_s[0] != '.'
  }.map { |template_path|
    template_path.split.last.to_s
  }.select { |template_name|
    template_name.include?(search_term)
  }.each { |template_name|
    template_names.push(template_name)
  }

  return template_names
end