Revisions

  • 9b9123 teddyze... Wed Sep 03 05:24:14 -0700 2008
gist: 8577 Download_button fork
public
Public Clone URL: git://gist.github.com/8577.git
Embed All Files: show embed
seo_friendly_urls_in_rails.rb #
1
2
3
4
5
6
7
8
9
class OperatingSystem < ActiveRecord::Base
  def to_param
    "#{id}-#{name.gsub(/[^a-z0-9]+/i, '-')}".downcase
  end
end
 
map.resources :operating_systems, :as => 'operating-systems'