Slide 13
Slide 13 text
Good point
VALUES = [
'foo'.freeze,
'bar'.freeze
]
Style/MutableConstant: Freeze mutable
objects assigned to constants
Layout/FirstArrayElementIndentation: Indent the right bracket
the same as the start of the line where the left bracket is.
VALUES = [
'foo'.freeze,
'bar'.freeze
].freeze
Very Useful !!