Load extensions even when only using middleman-core. Also, use Bundler.require when available rather than scanning gems for extensions.

This commit is contained in:
Ben Hollis 2012-03-13 23:00:02 -07:00
parent baa7d42d74
commit f1051d8c59
3 changed files with 13 additions and 9 deletions

View file

@ -46,9 +46,12 @@ rescue LoadError
end end
end end
# Automatically discover extensions in RubyGems
Middleman.load_extensions_in_path
# Change directory to the root # Change directory to the root
Dir.chdir(ENV["MM_ROOT"] || Dir.pwd) do Dir.chdir(ENV["MM_ROOT"] || Dir.pwd) do
# Start the CLI # Start the CLI
Middleman::Cli::Base.start Middleman::Cli::Base.start
end end

View file

@ -196,12 +196,16 @@ module Middleman
# #
# @private # @private
def load_extensions_in_path def load_extensions_in_path
extensions = rubygems_latest_specs.select do |spec| if defined?(Bundler)
spec_has_file?(spec, EXTENSION_FILE) Bundler.require
end else
extensions = rubygems_latest_specs.select do |spec|
spec_has_file?(spec, EXTENSION_FILE)
end
extensions.each do |spec| extensions.each do |spec|
require spec.name require spec.name
end
end end
end end

View file

@ -3,6 +3,3 @@ require "middleman-more"
# Make the VERSION string available # Make the VERSION string available
require "middleman-core/version" require "middleman-core/version"
# Automatically discover extensions in RubyGems
Middleman.load_extensions_in_path