try to make extension loading generic

This commit is contained in:
Thomas Reynolds 2011-08-29 11:53:11 -07:00
parent 8de230725d
commit deb68c29a7

View file

@ -159,13 +159,8 @@ module Middleman
EXTENSION_FILE = "middleman_init.rb"
def self.load_extensions_in_path
# If newer Rubygems
extensions = if Gem::Specification.respond_to? :latest_specs
::Gem::Specification.latest_specs.select do |spec|
spec.contains_requirable_file?(EXTENSION_FILE)
end
else
::Gem::GemPathSearcher.new.find_all(EXTENSION_FILE)
extensions = rubygems_latest_specs.select do |spec|
spec_has_file?(spec, EXTENSION_FILE)
end
extensions.each do |spec|
@ -174,6 +169,20 @@ module Middleman
end
end
def self.rubygems_latest_specs
# If newer Rubygems
if Gem::Specification.respond_to? :latest_specs
Gem::Specification.latest_specs
else
Gem.source_index.latest_specs
end
end
def self.spec_has_file?(spec, path)
full_path = File.join(spec.full_gem_path, path)
File.exists?(full_path)
end
def self.server(&block)
sandbox = Class.new(Sinatra::Base)
sandbox.register Base