Files
discourse/app/models
Sam Saffron d0d5a138c3 DEV: stop freezing frozen strings
We have the `# frozen_string_literal: true` comment on all our
files. This means all string literals are frozen. There is no need
to call #freeze on any literals.

For files with `# frozen_string_literal: true`

```
puts %w{a b}[0].frozen?
=> true

puts "hi".frozen?
=> true

puts "a #{1} b".frozen?
=> true

puts ("a " + "b").frozen?
=> false

puts (-("a " + "b")).frozen?
=> true
```

For more details see: https://samsaffron.com/archive/2018/02/16/reducing-string-duplication-in-ruby
2020-04-30 16:48:53 +10:00
..
2019-11-19 10:21:06 +00:00
2020-04-28 15:59:39 +05:30
2019-11-29 15:49:08 +00:00
2020-04-30 16:48:53 +10:00
2020-04-22 14:27:01 -04:00
2019-10-21 12:08:20 +01:00
2019-05-13 15:24:24 +01:00
2020-04-28 15:59:39 +05:30
2019-10-21 12:08:20 +01:00
2019-12-04 13:33:51 -05:00
2020-04-28 15:59:39 +05:30
2020-04-28 15:59:39 +05:30
2019-10-21 12:08:20 +01:00
2020-04-30 16:48:53 +10:00
2020-04-30 16:48:53 +10:00
2020-01-27 15:28:56 +01:00
2020-04-28 15:59:39 +05:30
2020-04-28 15:59:39 +05:30
2020-01-27 15:28:56 +01:00
2019-10-17 16:58:22 +11:00
2020-04-30 16:48:53 +10:00