README.md in friendly_id-4.0.10.1 vs README.md in friendly_id-4.1.0.beta.1

- old
+ new

@@ -25,20 +25,20 @@ ## Version 4.x FriendlyId 4.x introduces many changes incompatible with 3.x. If you're upgrading, please [read the -docs](http://rubydoc.info/github/norman/friendly_id/4.0-stable/file/WhatsNew.md) to see what's +docs](http://rubydoc.info/github/norman/friendly_id/master/file/WhatsNew.md) to see what's new. ## Docs The current docs can always be found -[here](http://rubydoc.info/github/norman/friendly_id/4.0-stable/frames). +[here](http://rubydoc.info/github/norman/friendly_id/master/frames). The best place to start is with the -[Guide](http://rubydoc.info/github/norman/friendly_id/4.0-stable/file/Guide.rdoc), +[Guide](http://rubydoc.info/github/norman/friendly_id/master/file/Guide.rdoc), which compiles the top-level RDocs into one outlined document. You might also want to watch Ryan Bates's [Railscast on FriendlyId](http://railscasts.com/episodes/314-pretty-urls-with-friendlyid). ## Rails Quickstart @@ -47,10 +47,10 @@ rails new my_app cd my_app - gem "friendly_id", "~> 4.0.9" # Note: You MUST use 4.0.9 or greater for Rails 3.2.10+ + gem "friendly_id", "~> 4.0.1" rails generate scaffold user name:string slug:string # edit db/migrate/*_create_users.rb add_index :users, :slug, unique: true