I want to test out several landing page versions. Each version will have several variables such as:
@headline = "The Best App Ever"
@description = "Here's what the app does"
@hero_image = "hero.jpg"
@theme = "dark"
Ideally I would like to set only one variable in the controller, like:
@version = 1
And then in my view, I could call:
@version.hero_image
I'm sure this is really simple but I've never had to do it without actually creating a model and storing in the DB. Where should I store all these properties of each "version"?