aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/source/vendor.rb
blob: f2cf540c8d19fc9f854a5d86359103ab604e0b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
##
# This represents a vendored source that is similar to an installed gem.

class Gem::Source::Vendor < Gem::Source::Installed

  def initialize uri
    @uri = uri
  end

end