rails 技術ブログ

rails 技術ブログ

勉強したことをアウトプットしていきます

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

AWSデプロイ時にAn error occurred while installing sassc (2.4.0), and Bundler cannot continue. Make sure that `gem install sassc -v '2.4.0' --source 'https://rubygems.org/'` succeeds before bundling.というエラーが出てきたら

capistranoを使ってAWSへのデプロイをしようと$ bundle exec cap production deploy を実行したところ、以下のエラーと遭遇しました。 cc1plus: out of memory allocating 1085312 bytes after a total of 18100224 bytes make: *** [parser.o] エラー 1 mak…

【rails】登録フォームで日時を15分感覚で選択できるようにする

登録フォームで日時を登録してもらう箇所があり、datetime_fieldでフォームを作っていました。 = form_with(model: @schedule, id: 'form', local: false) do |f| = f.label :start_planned_day_at, :開始時間, class: 'control-label' = f.datetime_field :…