9 lines
271 B
Ruby
9 lines
271 B
Ruby
# 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
|
|
module ActiveModel
|
|
public :around_validation
|
|
end
|
|
end
|
|
end
|