ActiveStorage

Active Storage ActiveStorage::Attached

site.rb class Site < ApplicationRecord has_one_attached :og_image has_one_attached :favicon has_many_attached :main_images end favicon:アイコン画像 og_image:画像を1枚添付できる main_images:画像を複数枚添付できる これらをrails consoleで見て…

ActiveModel::EachValidator

ActiveModel::EachValidatorを継承したクラスでは、validate_eachというインスタンスメソッドにバリデーションルールを実装します。record、attribute、valueという引数については、後ほど解説いたします。 実装 class AttachmentValidator < ActiveModel::E…