Ruby on Rails Friday, July 25, 2014

I am trying to convert an integer to a DAYNAME in my validation message

validates_uniqueness_of :day, scope: :store, :message => "already has a target for #{Date::DAYNAMES[self.day]}."

This does not seem to work, I cannot access the day value.
The following displays the correct value

validates_uniqueness_of :day, scope: :store, :message => "already has a target for %{value}."

This throws an error:

validates_uniqueness_of :day, scope: :store, :message => "already has a target for #{Date::DAYNAMES[%{value}]}."


Any help would be Amazing!

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/01db1f73-8b91-4c19-9190-3565687d4304%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment