Hi I am trying to setup Vanity gem into a rail 3 application. I am creating a custom metric to experiment a bit.
So I created it following the suggestions on their website:
metric "Signups" do
description "Signups completed"
def values(from, to)
(from..to).map { |i| 24 }
end
end
- The file is located at the right place and is loaded, vanity picks it up but somehow it looks like there is an internal error in the way vanity works.
- Of course: those values are only there for a testing purpose, they will be replaced by real ones later.
I get the following error when running this experiment
Thank you!