399056ed78
This saves about 128 MB of baseline RAM usage per Unicorn and
Sidekiq process (!).
Linguist wasn't detecting languages anymore from CE/EE since
9ae8b57467
. However, Linguist::BlobHelper
was still being depended on by BlobLike and others.
This removes the Linguist gem, given it isn't required anymore.
EscapeUtils were pulled in as dependency, but given Banzai depends on
it, it is now added explicitly.
Previously, Linguist was used to detect the best ACE mode. Instead,
we rely on ACE to guess the best mode based on the file extension.
33 lines
776 B
Ruby
33 lines
776 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module LanguageData
|
|
EXTENSION_MUTEX = Mutex.new
|
|
|
|
class << self
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
def extensions
|
|
EXTENSION_MUTEX.synchronize do
|
|
strong_memoize(:extensions) do
|
|
Set.new.tap do |set|
|
|
YAML.load_file(Rails.root.join('vendor', 'languages.yml')).each do |_name, details|
|
|
details['extensions']&.each do |ext|
|
|
next unless ext.start_with?('.')
|
|
|
|
set << ext.downcase
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def clear_extensions!
|
|
EXTENSION_MUTEX.synchronize do
|
|
clear_memoization(:extensions)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|