blob: bec91582e7e45a8bb1c78d001aac7c3415591574 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module Bundler
module Plugin
# Stands in for a source handled by a plugin that is not loaded yet, so
# that the lockfile can still be parsed during the plugin install pass.
class UnloadedSource
include API::Source
end
end
end
|