Skip to content

Instantly share code, notes, and snippets.

View jdkoelsch's full-sized avatar

Julia jdkoelsch

  • Spry Digital
  • St. Louis, MO
View GitHub Profile
@geemus
geemus / 0_rackspace.rb
Created December 6, 2010 07:46
fog or: How I Learned to Stop Worrying and Love the Cloud (examples)
server_data = compute.create_server(
1,
49
).body['server']
until compute.get_server_details(
server_data['id']
).body['server']['status'] == 'ACTIVE'
end