How to play a wav file in Ruby?
audio, ruby, ruby-1.9.3, wav
Solution
I've used Gosu to play audio in a simple game context, so I imagine it would work fine for you...
@tune = Gosu::Song.new(window, "tune.wav")
@tune.play(true)
Problem
What is a good way to play an audio file from Ruby that is wav format? OSX or Ubuntu... Ruby 1.9.3