Support glob

This commit is contained in:
Madeline Lim 2018-05-19 21:34:07 -07:00
parent 2e8d97a0da
commit c91b1799cb
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ require 'ruby2d'
# fn = 'app/Content/Maps/1-ForsakenCity.bin'
fn = ARGV[0]
a = CelesteMapReader.new(fn)
File.open("#{File.basename(fn)}.xml", "wb") { |f| f.write a.root.inspect }
ARGV.each do |fn|
a = CelesteMapReader.new(fn)
File.open("#{File.basename(fn)}.xml", "wb") { |f| f.write a.root.inspect }
end