class ActiveMocker::UpdateMocksError

Public Class Methods

new(name, mock_build_version, mock_current_version) click to toggle source
Calls superclass method
# File lib/active_mocker/mock/exceptions.rb, line 30
def initialize(name, mock_build_version, mock_current_version)
  super("#{name} was built with #{mock_build_version} but the mock current version is #{mock_current_version}. Run `rake active_mocker:build` to update.")
end