README.md in audited-5.3.2 vs README.md in audited-5.3.3

- old
+ new

@@ -35,11 +35,11 @@ ## Installation Add the gem to your Gemfile: ```ruby -gem "audited", "~> 5.0" +gem "audited" ``` And if you're using ```require: false``` you must add initializers like this: ```ruby @@ -236,10 +236,10 @@ class ApplicationController < ActionController::Base def authenticated_user if current_user current_user else - 'Elon Musk' + 'Alexander Fleming' end end end ```