state_machine_patch.rb 271 字节
Newer Older
1 2 3 4
# This is a patch to address the issue in https://github.com/pluginaweek/state_machine/issues/251
# where gem 'state_machine' was not working for Rails 4.1
module StateMachine
  module Integrations
5 6 7
    module ActiveModel
      public :around_validation
    end
8 9
  end
end