I would like to use Ruby to interface with the Azure Microsoft.Compute Resource Provider API. It's a simple REST interface, e.g. to get a VM:
My question is, how do I authenticate first using pure Ruby? I've seen some other language samples, but I had difficulty following them, as they were usually library wrappers. Basically, I think I need the Ruby version of the C# code provided here:
https://msdn.microsoft.com/en-US/library/azure/dn790557.aspx
Thanks!