//File: string_extensionsclass String def vowels self.scan(/[aeiou]/i) endendload 'string_extensions'puts "This is a test".vowels.join('-')