mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
03d6e6c990
- just took a stab at running the StringLiterals cop to get a taste.
16 lines
389 B
Ruby
16 lines
389 B
Ruby
# 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
|
|
|
|
# Backwards compatibility namespace
|
|
module Features; end
|
|
|
|
end
|
|
|
|
require 'middleman-core/version'
|
|
require 'middleman-core/util'
|
|
require 'middleman-core/extensions'
|
|
require 'middleman-core/application'
|