Sha256: f53060e910ec15bc010744cbda1492affea101e0811ac533a1a8fc1ee2e7b792
Contents?: true
Size: 299 Bytes
Versions: 44
Compression:
Stored size: 299 Bytes
Contents
# frozen_string_literal: true module Renalware module HD class StationPresenter < SimpleDelegator def name super.presence || "Unnamed Station" end def css return if location.blank? "background-color: #{location&.colour}" end end end end
Version data entries
44 entries across 44 versions & 1 rubygems