I think it only dumps the last line, since you are constantly opening an closing the file for writing.
You should put the sink = file.open outside the loop
and a is not an array, but a single item, so th eb loop is not necessary
untested:
sink = File.open("U:/Phil_Sivyer/4_B_Man_hours_lost/Availability_daily_BAC/zzAVAILABILITY_joined.txt", "w")
File.open("U:/Phil_Sivyer/4_B_Man_hours_lost/Availability_daily_BAC/AVAILABILITY_joined.txt").each do |line|
sink.write line.gsub('Availability','')
end
sink.close