Hi,
I want to read the file content and store them in different
variables.
My file looks something like this:
----------------------------------------------------
url = "http://localhost"
emailid = "User@htmdec.com"
password= "12345678"
browser="iexplore"
-------------------------------------------------
I have to read each line and store only values within quotes into a variable.
eg:
webpage = "http://localhost"
pwd = "12345678"
Let me know if there is any ruby equivalent to this or any other method
to get this done.
Cheers