RailsCasts Pro episodes are now free!

Learn more or hide this

George Armhold's Profile

GitHub User: armhold

Site: http://www.armhold.com

Comments by George Armhold

Avatar

As per the Rails 4 docs performance tests are no longer part of the default stack.. You need to add the rails-perftest gem:

gem 'rails-perftest'

Avatar

Things seem to have moved around for Rails 4. I had to change the class/module as follows:

ruby
class ActiveSupport::Logger::SimpleFormatter
  def call(severity, time, progname, msg)
    "[#{severity}] [#{time}] #{msg}\n"
  end
end