Skip to content

Commit b915b65

Browse files
committed
Missing file
1 parent b9c3574 commit b915b65

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

lib/mri/bundler/source/gemspec.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# frozen_string_literal: true
2+
3+
module Bundler
4+
class Source
5+
class Gemspec < Path
6+
attr_reader :gemspec
7+
8+
def initialize(options)
9+
super
10+
@gemspec = options["gemspec"]
11+
end
12+
13+
def as_path_source
14+
Path.new(options)
15+
end
16+
end
17+
end
18+
end

0 commit comments

Comments
 (0)