mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
2130e902c2
Disable autoload on watcher finish moving requires out
14 lines
No EOL
384 B
Ruby
Executable file
14 lines
No EOL
384 B
Ruby
Executable file
# Using a bunch of convenience methods
|
|
require "active_support"
|
|
|
|
# Setup our load paths
|
|
libdir = File.expand_path(File.dirname(__FILE__))
|
|
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
|
|
|
# Top-level Middleman namespace
|
|
module Middleman; end
|
|
|
|
require "middleman-core/version"
|
|
require "middleman-core/util"
|
|
require "middleman-core/extensions"
|
|
require "middleman-core/base" |