Archive for the 'ruby' Category

Ruby on rails useful links

Aug 22, 2007 in ruby

A collection of links for rubyonrails… (more…)

display page action

Feb 27, 2007 in ruby

<% page = "/" + request.path_parameters['controller'] + "/" + request.path_parameters['action'] %>
page: <%= page %>

comments in rhtml

Feb 27, 2007 in ruby

<%#
This commenting style works for regular content, but will prematurely
end if you embed a scriptlet. If you do end up using this, be sure not
to put a space between the % and the #
%>

or of course <!-- comment -->