Sha256: bdd436f5bc0872ec34045a93fcea7c45d6a4a46cdf064e52b3c365e241e4ffd8
Contents?: true
Size: 323 Bytes
Versions: 74
Compression:
Stored size: 323 Bytes
Contents
class ApplicationController < ActionController::Base def css_framework @css_framework ||= 'bootstrap' "application_#{@css_framework}" end helper_method :css_framework def css_framework_bootstrap @css_framework = 'bootstrap' end def css_framework_tailwind @css_framework = 'tailwind' end end
Version data entries
74 entries across 74 versions & 1 rubygems