carpeliam (owner)

Fork Of

Revisions

gist: 38785 Download_button fork
public
Public Clone URL: git://gist.github.com/38785.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
scope.match("/:permalink").to(:controller => "articles", :action => "show").defer_to do |request, params|
 unless (article = Feather::Article.find_by_permalink(params[:permalink])).nil?
   params.merge(:id => article.id)
 end
end