Template of a custom feed generator service for the Bluesky network in Ruby

load all files in /app in the console script

Changed files
+2
bin
+2
bin/console
··· 4 4 require 'irb' 5 5 require_relative '../app/config' 6 6 7 + Dir[File.join(__dir__, '..', 'app', '**', '*.rb')].each { |f| require(f) } 8 + 7 9 IRB.start(__FILE__)