undefined method `<' for nil:NilClass
the line the error occurs on
@object.expires_at < Date.today
so.. how do I compare dates?
undefined method `<' for nil:NilClass
the line the error occurs on
@object.expires_at < Date.today
so.. how do I compare dates?
I just upgraded to rails 2.3.8 from 2.3.4..
this fixed it
@object.expires_at < Date.today unless @object.expires_at.nil?