You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/decorators/cell_decorator.rb

12 lines
187 B
Ruby

class CellDecorator < ApplicationDecorator
delegate_all
delegate :css_class, to: :brush
delegate :css_style, to: :brush
def brush
BrushDecorator.new(model.brush)
end
end