class Ruboty::Niftycloud::Actions::ComputingVolumeShow

Public Instance Methods

call() click to toggle source
# File lib/ruboty/niftycloud/actions/computing_volume_show.rb, line 5
def call
  volume = computing.volumes.find {|volume| volume['volumeId'] == message[:volume_id] }
  volume.each do |k, v|
    puts "#{k}: #{v}"
  end
end