1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

adding ready? method

Conflicts:
	lib/fog/vcloud_director/models/compute/vm.rb
This commit is contained in:
Rodrigo Estebanez 2013-10-01 14:44:37 +02:00 committed by Nick Osborn
parent fd2f487aa0
commit 20bd78ac98

View file

@ -126,6 +126,11 @@ module Fog
end
end
def ready?
reload
status == 'on'
end
end
end
end