class ViteRuby

def framework_libraries

variant of Vite Ruby.
Internal: Detects if the application has installed a framework-specific
def framework_libraries
  COMPANION_LIBRARIES.map { |name, framework|
    if library = Gem.loaded_specs[name]
      [framework, library]
    end
  }.compact
end