aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2019-08-02 05:00:15 +0900
committerAkira Matsuda <ronnie@dio.jp>2019-08-02 05:36:38 +0900
commit0168ac3dfc4aa48e76da336f490aee8fb39b5ed9 (patch)
treeecfedd7694eb0b7ef5775e513bd68a62c19ea6ba /activesupport
parent3d561aab7560799369df925d7dd6c258ddc28325 (diff)
downloadrails-0168ac3dfc4aa48e76da336f490aee8fb39b5ed9.tar.gz
rails-0168ac3dfc4aa48e76da336f490aee8fb39b5ed9.tar.bz2
rails-0168ac3dfc4aa48e76da336f490aee8fb39b5ed9.zip
Missing require AS/core_ext/string/inflections
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/marshal.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/marshal.rb b/activesupport/lib/active_support/core_ext/marshal.rb
index 0c72cd7b47..5ff0e34d82 100644
--- a/activesupport/lib/active_support/core_ext/marshal.rb
+++ b/activesupport/lib/active_support/core_ext/marshal.rb
@@ -1,5 +1,7 @@
# frozen_string_literal: true
+require "active_support/core_ext/string/inflections"
+
module ActiveSupport
module MarshalWithAutoloading # :nodoc:
def load(source, proc = nil)