README.md in friendly_id-4.0.9 vs README.md in friendly_id-4.0.10

- old
+ new

@@ -1,8 +1,8 @@ # FriendlyId -[![Build Status](http://travis-ci.org/norman/friendly_id.png)](http://travis-ci.org/norman/friendly_id) +[![Build Status](https://travis-ci.org/norman/friendly_id.png)](https://travis-ci.org/norman/friendly_id) FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins for Ruby on Rails. It allows you to create pretty URLs and work with human-friendly strings as if they were numeric ids for Active Record models. @@ -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/master/file/WhatsNew.md) to see what's +docs](http://rubydoc.info/github/FriendlyId/friendly_id/4.0-stable/file/WhatsNew.md) to see what's new. ## Docs The current docs can always be found -[here](http://rubydoc.info/github/norman/friendly_id/master/frames). +[here](http://rubydoc.info/github/FriendlyId/friendly_id/4.0-stable/frames). The best place to start is with the -[Guide](http://rubydoc.info/github/norman/friendly_id/master/file/Guide.rdoc), +[Guide](http://rubydoc.info/github/FriendlyId/friendly_id/4.0-stable/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,11 +47,11 @@ rails new my_app cd my_app - gem "friendly_id", "~> 4.0.1" + gem "friendly_id", "~> 4.0.9" # Note: You MUST use 4.0.9 or greater for Rails 3.2.10+ rails generate scaffold user name:string slug:string # edit db/migrate/*_create_users.rb add_index :users, :slug, unique: true @@ -101,10 +101,10 @@ article](http://yourbugreportneedsmore.info/). ## Thanks and Credits FriendlyId was originally created by Norman Clarke and Adrian Mugnolo, with -significant help early in its life by Emilio Tagua. I'm deeply gratful for the +significant help early in its life by Emilio Tagua. I'm deeply grateful for the generous contributions over the years from [many volunteers](https://github.com/norman/friendly_id/contributors). Part of the inspiration to rework FriendlyId came from Darcy Laycock's library [Slugged](https://github.com/Sutto/slugged), which he was inspired to create