aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-07-10 00:07:03 +0930
committerGitHub <noreply@github.com>2017-07-10 00:07:03 +0930
commit551f88366dcbaed3b0abc89bddd63975c4c9a5ca (patch)
treeab9306fac3d48ff7dc8556076c8d07b38bcfc381 /activerecord
parent8d98bb0cc6e2baf1694971ae2bdf19e8b8bcdce5 (diff)
parentb3f3d49fd6b91c6573b3e10e3d00f65306638927 (diff)
downloadrails-551f88366dcbaed3b0abc89bddd63975c4c9a5ca.tar.gz
rails-551f88366dcbaed3b0abc89bddd63975c4c9a5ca.tar.bz2
rails-551f88366dcbaed3b0abc89bddd63975c4c9a5ca.zip
Merge pull request #29655 from kirs/frozen-friendly-ap-ar
Prepare AP and AR to be frozen string friendly
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb b/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb
index 7a91272d1c..cd7442e751 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
module ActiveRecord
module ConnectionAdapters
module PostgreSQL
@@ -22,7 +23,7 @@ module ActiveRecord
# (3) -$2.55
# (4) ($2.55)
- value.sub!(/^\((.+)\)$/, '-\1') # (4)
+ value = value.sub(/^\((.+)\)$/, '-\1') # (4)
case value
when /^-?\D+[\d,]+\.\d{2}$/ # (1)
value.gsub!(/[^-\d.]/, "")