RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: armhold
Site: http://www.armhold.com
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'
Things seem to have moved around for Rails 4. I had to change the class/module as follows:
class ActiveSupport::Logger::SimpleFormatter def call(severity, time, progname, msg) "[#{severity}] [#{time}] #{msg}\n" end end
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'
Things seem to have moved around for Rails 4. I had to change the class/module as follows: