How to perform 'Count Vowels' in Ruby.
# Task: Count Vowels
# Language: Ruby
def count_vowels()
# Implementation for Count Vowels
# TODO: Implement core logic here
# Step 1: Prepare data
# Step 2: Process Count Vowels
puts("Done");
end