Sha256: c5055a4b0453229464d79b720fc13fc68108f7795d37ecf7c65dab28532cb300
Contents?: true
Size: 332 Bytes
Versions: 11
Compression:
Stored size: 332 Bytes
Contents
module Trestle module Controller module Title extend ActiveSupport::Concern included do helper_method :default_title end protected def title(title=nil) @_title = title if title end def default_title @_title || action_name.titleize end end end end
Version data entries
11 entries across 11 versions & 1 rubygems