I want to read a remote .yaml file (in my case, file is in 'Public' file in Dropbox) and to parse it so that in the end I have a hash.
When I try something like open('https://link_to_file/file.yaml'), I get not File object but a string object, so I cannot just YAML.load(open('https://link_to_file/file.yaml'))
The question is: how do I change string object like
foo:
-foo1
-foo2
(which is actually something like "foo:\r\n\t-foo1\r\n\t-foo2")
to a yaml-like hash?