module CCK::Examples

def gherkin

Return the paths for each example that is of 'gherkin' type
def gherkin
  Dir.entries(cck_features_folder_location).select do |file_or_folder|
    next if file_or_folder.start_with?('.')
    gherkin_example?(File.join(cck_features_folder_location, file_or_folder))
  end
end