PIYO - Tech & Life -

Posts

Rails周りで最近知ったこと 2018/04版

String#squish ActiveSupportで定義されているらしい。 def squish dup.squish! end def squish! gsub!(/[[:space:]]+/, " ") strip! self end halt_callback_chains_on_return_false がDeprecatedになった件でプルリク見てたら書いてあってみつけた。 deprecate halt_callback_chains_on_return_false instead of `halt_and… · rails/rails@4e63ce5 ActiveSupport::Deprecation.warn(<<-MSG.squish) ActiveSupport.halt_callback_chains_on_return_false is deprecated and will be removed in