Api calls using ruby scripting

Hi,
I am trying to write some automation script using ruby for some of the
api calls. There is api sign which is in md5 hash format. How can i
handle this case using ruby.

On Oct 1, 2008, at 8:17 AM, Raj Kumar wrote:

I am trying to write some automation script using ruby for some of the
api calls. There is api sign which is in md5 hash format. How can i
handle this case using ruby.

#!/usr/bin/env ruby -wKU

require “md5”

data = “James Edward G. II”
puts MD5.md5(data)

END

Hope that helps.

James Edward G. II