This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
openapi: 3.0.1 | |
info: | |
title: API V1 | |
version: v1 | |
paths: | |
"/api/v1/restaurants/{restaurant_id}/category_menus": | |
get: | |
summary: Retrieves a All Category Menu | |
tags: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'find' | |
# Define the directory to search | |
directory_to_search = 'app/views' | |
# Define the pattern to match files | |
file_pattern = /.*_th\.html\.erb$/ | |
# Define the output file | |
output_file = 'email_templates_th.txt' |