diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-11-10 17:02:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-10 17:02:50 +0900 |
commit | 63e121326e455069daebdef954f9ea1eaf8c1a5c (patch) | |
tree | 271c88cacfd87046c3031a001144926cf79002c5 /activemodel/lib | |
parent | 78ae4db138a7554683a59bfca113393459dcbf00 (diff) | |
parent | c59ab795eee288d0a8d6842d2115d14f58f7badd (diff) | |
download | rails-63e121326e455069daebdef954f9ea1eaf8c1a5c.tar.gz rails-63e121326e455069daebdef954f9ea1eaf8c1a5c.tar.bz2 rails-63e121326e455069daebdef954f9ea1eaf8c1a5c.zip |
Merge pull request #31115 from y-yagi/add_missing_requires
Add missing requires
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/attribute.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/attribute.rb b/activemodel/lib/active_model/attribute.rb index 43130c37c5..b75ff80b31 100644 --- a/activemodel/lib/active_model/attribute.rb +++ b/activemodel/lib/active_model/attribute.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require "active_support/core_ext/object/duplicable" + module ActiveModel class Attribute # :nodoc: class << self |