Sha256: bdbfb825538fdd41e8e8423b62a8137500ac1f1ba95ed15a570986c5135f3bee
Contents?: true
Size: 460 Bytes
Versions: 25
Compression:
Stored size: 460 Bytes
Contents
module Cmor module Core module Frontend module Breadcrumb class Base extend ActiveModel::Model attr_accessor :label, :url, :link_html_options, :li_html_options def initialize(attrs) attrs.reverse_merge!(link_html_options: {}, li_html_options: {}) attrs.each do |k, v| self.send("#{k}=", v) end end end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems