1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/middleman-core/bin/middleman

40 lines
1.2 KiB
Text
Raw Normal View History

#!/usr/bin/env ruby
2011-12-29 01:52:51 -05:00
# Add our lib/ directory to the path
libdir = File.expand_path(File.join(File.dirname(File.dirname(__FILE__)), "lib"))
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
moredir = File.expand_path(File.join(File.dirname(File.dirname(libdir)), "middleman-more", "lib", "middleman-more"))
$LOAD_PATH.unshift(moredir) unless $LOAD_PATH.include?(moredir)
require "middleman-core/cli"
2011-12-29 01:52:51 -05:00
# Only look for config.rb if MM_ROOT isn't set
if !ENV["MM_ROOT"] && found_path = ::Middleman.locate_root
2011-12-28 18:29:19 -05:00
ENV["MM_ROOT"] = found_path
end
2011-12-29 01:52:51 -05:00
# If we've found the root, try to setup Bundler
2011-12-28 18:29:19 -05:00
if ENV["MM_ROOT"]
2011-12-29 01:52:51 -05:00
# Set up gems listed in the Gemfile.
2011-12-28 18:29:19 -05:00
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('Gemfile', ENV["MM_ROOT"])
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
end
# Automatically discover extensions in RubyGems
require "middleman-core/extensions"
::Middleman.load_extensions_in_path
2011-12-29 01:52:51 -05:00
# Default command is server
2012-01-02 17:22:24 -05:00
ARGV.unshift("server") if ARGV.length < 1 || ARGV.first.include?("-")
2011-12-29 01:52:51 -05:00
# Start the CLI
if ENV["MM_ROOT"]
# Change directory to the root
Dir.chdir(ENV["MM_ROOT"]) do
Middleman::Cli::Base.start
2012-01-02 13:45:52 -05:00
end
else
Middleman::Cli::Base.start
end