Add state machine patch to fix error with state machine

See here for details: https://github.com/pluginaweek/state_machine/issues/251#issuecomment-32133267
This commit is contained in:
Luis Ramos
2020-05-19 15:10:32 +01:00
committed by Matt-Yorkley
parent 202aa3e5b7
commit ecb29ec830

View File

@@ -0,0 +1,11 @@
module StateMachine
module Integrations
module ActiveModel
public :around_validation
end
module ActiveRecord
public :around_save
end
end
end