create_product_kinds

in lib/tasks/db/prime.rake [14:21]


  def create_product_kinds
    ['Light Roast Coffee', 'Medium Roast Coffee', 'Dark Roast Coffee'].each do |name|
      ProductKind.create! name: name
      yield if block_given?
    end
    puts '' if block_given?
  end