Sha256: ab9ea74560f56f08c0f041c2071d382d1d2ba26f216de825d559bbd28d26efcc
Contents?: true
Size: 1.75 KB
Versions: 4
Compression:
Stored size: 1.75 KB
Contents
module Rack::App::SingletonMethods::Mounting MOUNT = Rack::App::SingletonMethods::Mounting def mount(app, options={}) options.freeze unless app.is_a?(Class) and app <= Rack::App raise(ArgumentError, 'Invalid class given for mount, must be a Rack::App') end cli.merge!(app.cli) merge_prop = {:namespaces => [@namespaces, options[:to]].flatten} router.merge_router!(app.router, merge_prop) nil end def mount_directory(directory_path, options={}) directory_full_path = ::Rack::App::Utils.expand_path(directory_path) namespace options[:to] do Dir.glob(File.join(directory_full_path, '**', '*')).each do |file_path| request_path = file_path.sub(/^#{Regexp.escape(directory_full_path)}/, '') get(request_path) { serve_file(file_path) } options(request_path) { '' } end end nil end alias create_endpoints_for_files_in mount_directory def serve_files_from(file_path, options={}) file_server = Rack::App::FileServer.new(Rack::App::Utils.expand_path(file_path)) request_path = Rack::App::Utils.join(@namespaces, options[:to], '**', '*') router.register_endpoint!('GET', request_path, file_server, route_registration_properties) end def mount_rack_based_application(rack_based_app, options={}) router.register_endpoint!( ::Rack::App::Constants::HTTP::METHOD::ANY, Rack::App::Utils.join(@namespaces, options[:to], ::Rack::App::Constants::RACK_BASED_APPLICATION), rack_based_app, route_registration_properties ) end alias mount_app mount_rack_based_application protected def on_mounted(&block) @on_mounted ||= [] @on_mounted << block unless block.nil? @on_mounted end alias while_being_mounted on_mounted end
Version data entries
4 entries across 4 versions & 1 rubygems