rails--rails/railties/lib/rails/rack/metal.rb

54 lines
1.4 KiB
Ruby
Raw Normal View History

require 'active_support/ordered_hash'
2009-04-22 23:10:49 +00:00
require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/dependencies'
2008-12-19 00:55:03 +00:00
module Rails
module Rack
class Metal
2008-12-19 00:55:03 +00:00
NotFoundResponse = [404, {}, []].freeze
NotFound = lambda { NotFoundResponse }
cattr_accessor :metal_paths
self.metal_paths = ["#{Rails.root}/app/metal"]
cattr_accessor :requested_metals
def self.metals
matcher = /#{Regexp.escape('/app/metal/')}(.*)\.rb\Z/
metal_glob = metal_paths.map{ |base| "#{base}/**/*.rb" }
all_metals = {}
metal_glob.each do |glob|
Dir[glob].sort.map do |file|
file = file.match(matcher)[1]
all_metals[file.camelize] = file
end
end
load_list = requested_metals || all_metals.keys
load_list.map do |requested_metal|
if metal = all_metals[requested_metal]
require_dependency metal
requested_metal.constantize
end
end.compact
end
def initialize(app)
@app = app
@metals = ActiveSupport::OrderedHash.new
self.class.metals.each { |app| @metals[app] = true }
freeze
end
2008-12-19 00:55:03 +00:00
def call(env)
@metals.keys.each do |app|
result = app.call(env)
return result unless result[0].to_i == 404
2008-12-19 00:55:03 +00:00
end
@app.call(env)
2008-12-19 00:55:03 +00:00
end
end
end
end