I am new to HAML. I am trying to create a link using haml which looks like the this
=link_to("Last updated on<%=@last_data.date_from.month %>",'/member/abc/def?month={Time.now.month}&range=xyz&year={Time.now.year}')
but it is not taking the ruby code and it is displaying that as a string
Last updated on<%=@last_data.date_from.month %>
and in the URL as well it is not taking the function Time.now.month or Time.now.year . How to pass Ruby code in URL and in the string ? Any help