I get a string from a external method with a time and date like so \"07/09/10 14:50\" is there any way I can convert that time in ruby to \'Pacific US\' time knowin
\"07/09/10 14:50\"
require 'time'
t = Time.parse((Time.new-25200).to_s)
puts t.strftime("%A %D at %I:%M%p")