Fix file task registration using values.each
values returns an array and silently ignores the block.

Assisted-by: Claude Opus 4.6 via pi
change lqtumpxwoosntozlqpvmlwpmnryovxps
commit 7cfcfab1b2e67a5b102a0bb04f225e7f3122030c
author Alpha Chen <alpha@kejadlen.dev>
date
parent xrstqwnl
diff --git a/Rakefile b/Rakefile
index 5a5af4d..93c299d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -27,7 +27,7 @@ Rake::Task[HRN_FEED].invoke
 
 EPISODES = CookingIssues::Feed.parse(HRN_FEED)
 
-EPISODES.values do |ep|
+EPISODES.values.each do |ep|
   audio = File.join(AUDIO_DIR, "#{ep.slug}.mp3")
   file audio => AUDIO_DIR do
     puts "Downloading #{ep.slug}..."