なるようになるブログ

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

rails commit log流し読み(2014/12/15)

2014/12/15分のコミットです。

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


new guide: constant autoloading and reloading

rails guideのConstant Autoloading and Reloadingを新規に作成しています。 edgeguideはこちら

タイトルの通りで、Railsがconstantの自動ロード/再ロードをどのように行っているのかについて説明しています。


Edit pass to section 5.1 of getting started guide [ci skip]

rails guideのGetting Started with Railsの修正です。

Laying down the ground workの項について、全体的にグラマーの修正を行っています。


Rephrase this from 3f38762 [ci skip]

RELEASING_RAILS.rdocの修正です

Notify implementorsの項のグラマーの修正を行っています。


Use generic timestamp for generated migration file. [ci skip]

rails guideのGetting Started with Railsの修正です。

マイグレーションファイルについて説明している箇所で、具体的な日付を指定していたのを、timestamps formatに修正しています。 db/migrate/20140120191729_create_articles.rb -> db/migrate/YYYYMMDDHHMMSS_create_articles.rb です。


Fix path typo to Article model in Getting Started [ci skip]

rails guideのGetting Started with Railsの修正です。

Saving data in the controllerの項で、サンプルアプリのmodelのパス名が誤っていたのを修正しています。


Add null option to timestamps as migration generator does [ci skip]

rails guideの修正です。

マイグレーションファイルのサンプルのtimestampsの箇所に、null: falseを追加しています。

-        t.timestamps
+        t.timestamps null: false

Rails 4.2から生成されるマイグレーションファイルにはnull: falseが設定されるようになったので、合わせた形ですね。


autoloading guide, fix typo Amin -> Admin. [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

Amin -> Adminに修正しています。


autoloading guide: relax type of constant names [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

constant名がStringのみとなっていた説明を修正しています。


autoloading guide: new section about why Kernel#autoload is not involved [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

Kernel#autoloadについて説明する項を追加しています。


autoloading guide: Kernel#autoload -> Module#autoload [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

Kernel#autoload -> Module#autoloadに修正しています。


autoloading guide: minor edits.

rails guideのConstant Autoloading and Reloadingの修正です。

グラマーの修正、説明の追加、項番の追加等々を行っています。


autoloading guide: documents nesting

rails guideのConstant Autoloading and Reloadingの修正です。

nestingについて説明する項を追加しています。


autoloading guide: damn typos [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

typoの修正を行っています。


autoloading guide: documents constant resolution algorithms

rails guideのConstant Autoloading and Reloadingの修正です。

Resolution Algorithm for Qualified Constantsの項を追加しています。


autoloading guide: more edits [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

グラマーの修正です。


autoloading guide: more refinements [ci skip]

rails guideのConstant Autoloading and Reloadingの修正です。

こちらもグラマーの修正等、文章校正行っています。