2015/10/12分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
[ci skip] Fix typo in deep_dup docs
rails guideのActive Support Core Extensions
の修正です。
deep_dup
メソッドについて説明している箇所のグラマーの修正を行っております。
do not generate manifest.js in plugins
railties/lib/rails/generators/rails/plugin/plugin_generator.rb
の修正です。
pluginを生成する際は、manifest.js
を生成しないよう修正しています。元々plugin generatorでは一切assetsを生成していない為。
edit pass over the project Gemfile [ci skip]
Gemfile
のdocの修正です。
Gemfile内の各コメントに対して、コンポーネント名を正式名に修正、句読点を追加、1行80文字に収まるよう改行を追加、をまとめて行っています。
Merge pull request #21849 from yui-knk/refactor_regexp_to_string
actionpack/lib/action_dispatch/journey/route.rb
、
actionpack/lib/action_dispatch/routing/inspector.rb
の修正です。
Journey::Route#verb
メソッドの戻り値をRegexpからStringに修正しています。
use the strategy pattern to match request verbs · rails/rails@0b476deの対応により、戻り値がRegexpである必要はなくなったのと、かつ、Journey::Route#verb
の戻り値はinspectorで使用する(routes
の表示に使用している)為、Stringの方が適切な為修正したとの事です。
Merge pull request #21933 from kamipo/move_schema_definiton_classes_into_appropriate_file
Active RecordのConnectionAdapterの修正です。
元々、activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
にschemaの作成、定義に関する処理がまとめて記載されていたのを、それぞれ適切なファイル(activerecord/lib/active_record/connection_adapters/mysql/schema_creation.rb
、activerecord/lib/active_record/connection_adapters/mysql/schema_definitions.rb
)に処理を定義するよう修正しています。
Merge pull request #21931 from paul/bugfix/remove-deprecated-pg_dump-flag
activerecord/lib/active_record/tasks/postgresql_database_tasks.rb
の修正です。
pg_dump
を行う際のオプションから、-i
オプションを削除しています。
-i
オプションはPostgreSQL 8.4からdeprecateになっていたのですが、PostgreSQL 9.5では指定するとエラーになるようになってしまっていた為、削除したとの事です。