middleman/bin/middleman

63 lines
1.8 KiB
Text
Raw Normal View History

#!/usr/bin/env ruby
libdir = File.join(File.dirname(File.dirname(__FILE__)), "lib")
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
require 'pathname'
require 'rubygems'
module Middleman
module ProjectLocator
2011-11-21 06:21:19 +01:00
class << self
def locate_middleman_root!
2011-11-21 06:21:19 +01:00
cwd = Dir.pwd
2011-11-21 06:21:19 +01:00
if !in_middleman_project? && !in_middleman_project_subdirectory?
$stderr.puts "== Error: Could not find a Middleman project config, perhaps you are in the wrong folder?"
return
end
2011-11-21 06:21:19 +01:00
if in_middleman_project?
did_locate_middleman_project(cwd)
2011-11-21 06:21:19 +01:00
return
end
2011-11-21 06:21:19 +01:00
Dir.chdir("..") do
# Recurse in a chdir block: if the search fails we want to be sure
# the application is generated in the original working directory.
locate_middleman_root! unless cwd == Dir.pwd
2011-11-21 06:21:19 +01:00
end
rescue SystemCallError
# could not chdir, no problem just return
end
2011-11-21 06:21:19 +01:00
def in_middleman_project?
File.exists?('config.rb')
end
2011-11-21 06:21:19 +01:00
def in_middleman_project_subdirectory?(path = Pathname.new(Dir.pwd))
File.exists?(File.join(path, 'config.rb')) || !path.root? && in_middleman_project_subdirectory?(path.parent)
end
def did_locate_middleman_project(path)
2011-11-21 06:21:19 +01:00
# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('Gemfile', path)
2011-11-21 06:21:19 +01:00
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
start_cli!
2011-11-21 06:21:19 +01:00
end
def start_cli!
2011-11-21 06:21:19 +01:00
require 'middleman'
Middleman::CLI::Base.start
2011-11-21 06:21:19 +01:00
end
end
end
end
if ARGV.length < 1 || %w(server build migrate).include?(ARGV.first)
Middleman::ProjectLocator.locate_middleman_root!
else
Middleman::ProjectLocator.start_cli!
end