Just do IT

思うは招く

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

なにかに挑戦するのに準備しすぎてしまう人へおくる言葉

.alu-embed-iframe-A3tjdzYsCrleHHBFCYh2 { width: 424px !important; height: 185.5px; } @media screen and (max-width: 480px) { .alu-embed-iframe-A3tjdzYsCrleHHBFCYh2 { width: 318px !important; height: 139.125px; } } ベルセルク / alu.jp alu.jp

Heroku上のrails コンソールをSandboxモードで動かしたい

ローカルでやる要領でheroku run rails c -sとやってもダメだった。 $ heroku run rails console --sandbox -a アプリ名

Rails delegate の挙動

Active Support コア拡張機能 - Railsガイド Railsガイドに書いてあるサンプルを解釈してみる。 たとえば、UserモデルとProfileモデルがある。 Userモデル Profileモデル UserはひとつのProfileを持つ。 # id :integer not null, primary key # name :string…

annotate gem 使い方

ctran/annotate_models: Annotate Rails classes with schema and routes info annotate gemとは、モデルファイルに以下のようなスキーマ情報を記述してくれるgem。好き嫌いはあるようだけど、いちいちスキーマファイルを見に行かなくて済むので個人的には好…