Sha256: 59aeaad600f93b9f60152ccca867eaf898dd5bc1a0f57c18f5de235916ae104b
Contents?: true
Size: 571 Bytes
Versions: 13
Compression:
Stored size: 571 Bytes
Contents
require_dependency "express_ui/application_controller" module ExpressUi class UicomponentsController < ApplicationController layout "express_ui/styleguide" before_action :load_collection helper_method :render_to_string def index end def master_detail_scroll end def master_detail_fixed end def content_and_sidebar end def half_width end def full_width end private def load_collection @collection = ["one", "two", "three"] end def collection @collection end end end
Version data entries
13 entries across 13 versions & 1 rubygems