class HelperRouter
Public Class Methods
new(client)
click to toggle source
# File lib/shot_mvc/helper_router.rb, line 2 def initialize(client) if Dir.exists? "app/helpers" Dir.new("app/helpers").each do |helper_file| require_relative "./app/helpers/#{helper_file}" end end end