diff options
author | printercu <printercu@gmail.com> | 2014-05-13 17:27:43 +0400 |
---|---|---|
committer | printercu <printercu@gmail.com> | 2014-05-13 17:27:43 +0400 |
commit | f1798951e747da23bd1f30a7f1a6c041a117bd8a (patch) | |
tree | 2b69c4e1c6975c4a31f5289c4a49acec9e49271f /activesupport/lib | |
parent | c6c164238305b1aaebff54758035f676feeeb06e (diff) | |
download | rails-f1798951e747da23bd1f30a7f1a6c041a117bd8a.tar.gz rails-f1798951e747da23bd1f30a7f1a6c041a117bd8a.tar.bz2 rails-f1798951e747da23bd1f30a7f1a6c041a117bd8a.zip |
Do not check defined?(CGI) on every call #to_query
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/to_query.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/to_query.rb b/activesupport/lib/active_support/core_ext/object/to_query.rb index 37352fa608..172f06ed64 100644 --- a/activesupport/lib/active_support/core_ext/object/to_query.rb +++ b/activesupport/lib/active_support/core_ext/object/to_query.rb @@ -1,4 +1,5 @@ require 'active_support/core_ext/object/to_param' +require 'cgi' class Object # Converts an object into a string suitable for use as a URL query string, using the given <tt>key</tt> as the @@ -6,7 +7,6 @@ class Object # # Note: This method is defined as a default implementation for all Objects for Hash#to_query to work. def to_query(key) - require 'cgi' unless defined?(CGI) && defined?(CGI::escape) "#{CGI.escape(key.to_param)}=#{CGI.escape(to_param.to_s)}" end end |