Sha256: a8ef33d8827d723832beac357348361d5c29bfce5115fc862911d422c0e83118
Contents?: true
Size: 335 Bytes
Versions: 34
Compression:
Stored size: 335 Bytes
Contents
# frozen_string_literal: true module Renalware module Patients # Experimental ActionView component class SideMenuComponent < ActionView::Component::Base validates :patient, presence: true def initialize(patient:) @patient = patient end private attr_reader :patient end end end
Version data entries
34 entries across 34 versions & 1 rubygems