Module: CosmosCompatibility

Included in:
Object
Defined in:
lib/openc3/top_level.rb

Instance Method Summary collapse

Instance Method Details

#load(*args) ⇒ Object



559
560
561
562
563
564
565
566
# File 'lib/openc3/top_level.rb', line 559

def load(*args)
  filename = args[0]
  if filename[0..6] == "cosmos/"
    filename[0..6] = "openc3/"
  end
  args[0] = filename
  super(*args)
end

#require(*args) ⇒ Object



551
552
553
554
555
556
557
558
# File 'lib/openc3/top_level.rb', line 551

def require(*args)
  filename = args[0]
  if filename[0..6] == "cosmos/"
    filename[0..6] = "openc3/"
  end
  args[0] = filename
  super(*args)
end