2015-11-13から1日間の記事一覧

Rails Tutorialをやってみよう(番外編) herokuを設定する

1.5.1 Herokuのセットアップ group :production do gem 'pg', '0.17.1' gem 'rails_12factor', '0.0.2' endをGemfileへ追加する。 本番環境のgemは開発環境へインストールされない。 $ bundle install --without productionリスト1.14で追加したgemは本番環…

Rubymineで行番号を表示させる

Preference > Editor > Appearance にて、「Show line numbers」へチェックを入れる

vagrant の起動時にエラーが発生した

Failed to mount folders in Linux guest. This is usually because the "vboxsf" file system is not available. Please verify that the guest additions are properly installed in the guest and can work properly. The command attempted was: mount -…

Rails Tutorialをやってみよう03

第3章の途中から、引き続きやっていきます。 テストの部分は飛ばしてやっていきます。 http://railstutorial.jp/chapters/static_pages?version=4.2#sec-slightly_dynamic_pages目次 3.4 少しだけ動的なページ3.4.1 タイトルをテストする (Red) 3.4.2 タイト…