diff options
author | Alberto Almagro <albertoalmagro@gmail.com> | 2018-10-28 17:51:22 +0100 |
---|---|---|
committer | Alberto Almagro <albertoalmagro@gmail.com> | 2018-10-28 17:51:22 +0100 |
commit | 3d137b3a125030a08142419c260188599d321c85 (patch) | |
tree | 8156f05c0ef62c8bc33028218fed874f05830c52 | |
parent | 3295e23755744b7f9426d752481bb928fb02a89e (diff) | |
download | rails-3d137b3a125030a08142419c260188599d321c85.tar.gz rails-3d137b3a125030a08142419c260188599d321c85.tar.bz2 rails-3d137b3a125030a08142419c260188599d321c85.zip |
Privatize and add # :nodoc: to constants
Both `UTC_OFFSET_WITH_COLON` and `UTC_OFFSET_WITHOUT_COLON` are only
used within `ActiveSupport::TimeZone` and in my opinion they do not
provide relevant information that should appear in the docs.
-rw-r--r-- | activesupport/lib/active_support/values/time_zone.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb index fd07a3a6a2..d9e033e23b 100644 --- a/activesupport/lib/active_support/values/time_zone.rb +++ b/activesupport/lib/active_support/values/time_zone.rb @@ -182,8 +182,9 @@ module ActiveSupport "Samoa" => "Pacific/Apia" } - UTC_OFFSET_WITH_COLON = "%s%02d:%02d" - UTC_OFFSET_WITHOUT_COLON = UTC_OFFSET_WITH_COLON.tr(":", "") + UTC_OFFSET_WITH_COLON = "%s%02d:%02d" # :nodoc: + UTC_OFFSET_WITHOUT_COLON = UTC_OFFSET_WITH_COLON.tr(":", "") # :nodoc: + private_constant :UTC_OFFSET_WITH_COLON, :UTC_OFFSET_WITHOUT_COLON @lazy_zones_map = Concurrent::Map.new @country_zones = Concurrent::Map.new |