Sha256: 1db3b94e57cd28000b0433bb0d95735f3b006b37309dcb11dd94e634ec55a7d6
Contents?: true
Size: 401 Bytes
Versions: 63
Compression:
Stored size: 401 Bytes
Contents
# frozen_string_literal: true module YARD module Server # Registers a static path to be used in static asset lookup. # @param [String] path the pathname to register # @return [void] # @since 0.6.2 def self.register_static_path(path) static_paths = Commands::StaticFileCommand::STATIC_PATHS static_paths.push(path) unless static_paths.include?(path) end end end
Version data entries
63 entries across 62 versions & 9 rubygems