06
Jul
Part 1 - Basic Working Example (Done) Part 2 - Refactor and Deployment In this short tutorial we'll build a simple YouTube thumbnail downloader in Ruby on Rails with SerpApi for finding video thumbnails. Prerequisites:- Ruby version 3.2.2Ruby on Rails version 7.1.3.4SerpApi access. You can get the api key by singing up here. The versions don't matter. You should have both ruby and rails installed in your system. Let's begin by scaffolding our rails app.$ rails new YT-Thumbnail-Downloader Go to the project directory $ cd YT-Thumbnail-Downloader. Type $ rails s in the terminal and open localhost:3000 in the browser. You…