tagomoris / right_speed

MIT License
15 stars 1 forks source link

Other libraries' un-frozen constants can't be referred in Ractor #5

Open tagomoris opened 3 years ago

tagomoris commented 3 years ago

Solution:

module MyModule
  CONST_NAME = Others::CONST.freeze
end
tagomoris commented 3 years ago

And use # frozen_string_literal: true everywhere. Freeze all values of constants.