class MirandaLoad::Load

Public Class Methods

new(system) click to toggle source
# File lib/miranda/system/load.rb, line 3
def initialize(system)
  puts "Ruby Platform: #{system}"
  Dir.glob("../lib/miranda/system/#{system}/*.rb").each { |file| require file }
end