I want to create a select list for lets say colors, but dont want to create a table for the colors. I have seen it anywhere, but can\'t find it on google.
My questi
If you want to have a select list (which does not evolve) you can define a method in your ApplicationHelper that returns a list, for example:
ApplicationHelper
def my_color_list [ "red", "green", "blue" ] end