aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/xml_mini.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-12-21 18:12:10 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-12-21 18:12:10 +0900
commita1c57cf69f2454d5ba3a086237c1c827e6c9de5a (patch)
tree31560ca3c3f842114ce879cac25d87cc26bf8353 /activesupport/lib/active_support/xml_mini.rb
parent5abe612b0d3ef2b71c779b299a37e996882efe28 (diff)
downloadrails-a1c57cf69f2454d5ba3a086237c1c827e6c9de5a.tar.gz
rails-a1c57cf69f2454d5ba3a086237c1c827e6c9de5a.tar.bz2
rails-a1c57cf69f2454d5ba3a086237c1c827e6c9de5a.zip
Add missing require for `String#to_d`
Diffstat (limited to 'activesupport/lib/active_support/xml_mini.rb')
-rw-r--r--activesupport/lib/active_support/xml_mini.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/xml_mini.rb b/activesupport/lib/active_support/xml_mini.rb
index b5995d6fe9..075cd4ed8b 100644
--- a/activesupport/lib/active_support/xml_mini.rb
+++ b/activesupport/lib/active_support/xml_mini.rb
@@ -3,6 +3,7 @@
require "time"
require "base64"
require "bigdecimal"
+require "bigdecimal/util"
require "active_support/core_ext/module/delegation"
require "active_support/core_ext/string/inflections"
require "active_support/core_ext/date_time/calculations"