mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 02:52:49 +01:00
6 lines
159 B
Ruby
6 lines
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'app'
|
|
$LOAD_PATH << App.root.join('lib')
|
|
Dir[App.root.join('config/initializers/*.rb')].each { |f| require f }
|