class HahaRando::Kush
Public Class Methods
generate()
click to toggle source
# File lib/haha_rando.rb, line 12 def self.generate prefix = ["OG", "", ""] arr1 = ["sour", "durban", "canadian", "purple", "dreamy", "afghani", "special", "jamaican", "thai", "naboo", "california", "kashyyyk", "rainforest", "desert", "Tatooine", "mountain", "watermelon", "lemon", "orange", "strawberry", "cherry", "yucca"] arr2 = ["lamb", "rabbit", "hammer", "spirit", "cactus", "headband", "moon rock", "crescent", "salmon", "desert", "watermelon", "haze", "cloud", "cafe", "ice", "scientist", "cookies", "glue", "cheese", "alfalfa", "acorn", "bud", "blossom", "flambe"] string = prefix.sample + " " + arr1.sample + " " + arr2.sample puts string return string end