# File lib/sugar-high/kind_of.rb, line 45 def select_only type const = type.kind_of_label? ? "#{type.to_s.camelize}".constantize : type select{|a| a.kind_of? const} end