summaryrefslogtreecommitdiff
path: root/lib/bundler/source/gemspec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/source/gemspec.rb')
-rw-r--r--lib/bundler/source/gemspec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/bundler/source/gemspec.rb b/lib/bundler/source/gemspec.rb
deleted file mode 100644
index 7e3447e776..0000000000
--- a/lib/bundler/source/gemspec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-module Bundler
- class Source
- class Gemspec < Path
- attr_reader :gemspec
-
- def initialize(options)
- super
- @gemspec = options["gemspec"]
- end
-
- def as_path_source
- Path.new(options)
- end
- end
- end
-end