module MirandaLoad class Load def initialize(system) puts "Ruby Platform: #{system}" Dir.glob("../lib/miranda/system/#{system}/*.rb").each { |file| require file } end end end