なるようになるブログ

読書感想文かrailsについてかrubyについてか

rails commit log流し読み(2017/05/21)

2017/05/21分のコミットです。

CHANGELOGへの追加はありませんでした。


bundle up redis to the one that does not warn about ::Fixnum deprecation

Gemfile.lockの修正です。

redisのバージョンを3.3.3に更新しています。


identifiers is already defined via Connection::Identification module

actioncable/lib/action_cable/remote_connections.rbの修正です。

RemoteConnectionクラスでidentifiersメソッドを定義する際に、redefine_methodメソッドを使用するよう修正しています。

-        def identifiers
+        redefine_method :identifiers do
           server.connection_identifiers
         end

identifiersメソッドはConnection::Identification moduleで既に定義されており、defで普通に定義するとメソッド再定義のwarningが出てしまう為。


Fix typo in guides

rails guideのWorking with JavaScript in Railsの修正です。

Customize remote elementsの項のタイポを修正しています。


bundle up sidekiq to the one with safer integration with Rails 5

Gemfile.lockの修正です。

sidekiqのバージョンを5.0.0に更新しています。


Fix broken external link in security guide.

rails guideのRuby on Rails Security Guideの修正です。

MySpace Samy wormへのリンクが壊れてしまっていたのを修正しています。