diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-07-24 15:54:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 15:54:08 -0400 |
commit | 9c35bf2a6a27431c6aa283db781c19f61c5155be (patch) | |
tree | 9fc9122c33cb1b58db900f3d278c4a162cd1e433 /actionview/lib/action_view/helpers/number_helper.rb | |
parent | 998ec40f9e69616fbc813aab072711582b7c155c (diff) | |
parent | 424117281e72284539a10d26162b8ce9e95cf865 (diff) | |
download | rails-9c35bf2a6a27431c6aa283db781c19f61c5155be.tar.gz rails-9c35bf2a6a27431c6aa283db781c19f61c5155be.tar.bz2 rails-9c35bf2a6a27431c6aa283db781c19f61c5155be.zip |
Merge pull request #29897 from kirs/frozen-actionview
Use frozen string literal in actionview/
Diffstat (limited to 'actionview/lib/action_view/helpers/number_helper.rb')
-rw-r--r-- | actionview/lib/action_view/helpers/number_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionview/lib/action_view/helpers/number_helper.rb b/actionview/lib/action_view/helpers/number_helper.rb index b6bc5f4f6f..4b53b8fe6e 100644 --- a/actionview/lib/action_view/helpers/number_helper.rb +++ b/actionview/lib/action_view/helpers/number_helper.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + require "active_support/core_ext/hash/keys" require "active_support/core_ext/string/output_safety" require "active_support/number_helper" |