aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/source/gemspec.rb
blob: 37e9a439457638b06f25df8b59e718c7c389c12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
module Bundler
  class Source
    class Gemspec < Path
      attr_reader :gemspec

      def initialize(options)
        super
        @gemspec = options["gemspec"]
      end
    end
  end
end