# File lib/aeolus_image/command/base_command.rb, line 88 def is_uuid?(id) uuid = Regexp.new('[\w]{8}[-][\w]{4}[-][\w]{4}[-][\w]{4}[-][\w]{12}') uuid.match(id).nil? ? false : true end