CoralMUD-0.15/
CoralMUD-0.15/core/
CoralMUD-0.15/data/
CoralMUD-0.15/data/areas/
CoralMUD-0.15/data/help/
CoralMUD-0.15/data/players/
CoralMUD-0.15/lib/automap/
CoralMUD-0.15/lib/items/
require 'coderay'
class Player
  def cmd_source c, arg
    str = ""
    if !File.exist?("lib/commands/#{arg}.rb")
      return
    end
    f = File.open("lib/commands/#{arg}.rb")

    f.each_line do |l|
      str << l
    end
    text_to_player CodeRay.scan(str, :ruby).term
  end
end