2012-02-01から1ヶ月間の記事一覧

Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead.

renderメソッドでビューのフォーマットまで指定するとタイトルのWARNINGが出る。 対処は以下の通り # フォーマット(html)まで指定しているので× render 'form.html' # テンプレート名からフォーマットを排除し、代わりに:formatオプションに指定することで○ …

Rails(3.1 or later) productionモードが動かない

Rails3.2.1 productionモードで起動し、アプリのトップページへアクセスしたらInternal Errorが発生。 production.logには以下が吐かれていた。 ActionView::Template::Error (application.css isn't precompiled): ネットを探すと以下のページが見つかる。 …