show/hide this revision's text 2 Added the method for creating a permalink.

You will want to setup a custom route to point the url to the controller that will handle it. Since you are using Rails, here is an introduction in using their routing engine.

Edit

Sorry, I misunderstood your question. In Ruby, you will need a regex like you already know and here is the regex to use:

def permalink_for(str)
    str.gsub(/[^\w\/]|[!\(\)\.]+/, ' ').strip.downcase.gsub(/\ +/, '-')
end
show/hide this revision's text 1

You will want to setup a custom route to point the url to the controller that will handle it. Since you are using Rails, here is an introduction in using their routing engine.